Skip to content

Commit

Permalink
chore(looker): add dagster-looker to release pipeline (#21810)
Browse files Browse the repository at this point in the history
## Summary & Motivation
Undo
#21284 (comment).

## How I Tested These Changes
N/A
  • Loading branch information
rexledesma authored and alangenfeld committed May 14, 2024
1 parent c6536b3 commit 466f168
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
from dagster._core.libraries import DagsterLibraryRegistry

# Move back to version.py and edit setup.py once we are ready to publish.
__version__ = "1!0+dev"

from .version import __version__ as __version__

DagsterLibraryRegistry.register("dagster-looker", __version__)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "1!0+dev"
9 changes: 8 additions & 1 deletion python_modules/libraries/dagster-looker/setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
from pathlib import Path
from typing import Dict

from setuptools import find_packages, setup


def get_version() -> str:
return "1!0+dev"
version: Dict[str, str] = {}
with open(Path(__file__).parent / "dagster_looker/version.py", encoding="utf8") as fp:
exec(fp.read(), version)

return version["__version__"]


ver = get_version()
Expand Down

0 comments on commit 466f168

Please sign in to comment.