Skip to content

Commit d7791c5

Browse files
author
gibsondan
authored
Remove pins in dagster-dbt/kitchen-sink (#33108)
Summary: We don't publish this module so there is no reason we need these pins (and they are messing up builds on the release branch) Test Plan: BK ## Summary & Motivation ## How I Tested These Changes ## Changelog > Insert changelog entry or delete this section.
1 parent 1d02d9f commit d7791c5

1 file changed

Lines changed: 2 additions & 17 deletions

File tree

  • python_modules/libraries/dagster-dbt/kitchen-sink

python_modules/libraries/dagster-dbt/kitchen-sink/setup.py

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,11 @@
1-
from pathlib import Path
2-
31
from setuptools import find_packages, setup
42

5-
6-
def get_version() -> str:
7-
version: dict[str, str] = {}
8-
with open(Path(__file__).parent / ".." / "dagster_dbt/version.py", encoding="utf8") as fp:
9-
exec(fp.read(), version)
10-
11-
return version["__version__"]
12-
13-
14-
ver = get_version()
15-
# dont pin dev installs to avoid pip dep resolver issues
16-
pin = "" if ver == "1!0+dev" else f"=={ver}"
17-
183
setup(
194
name="dagster-dbt-cloud-kitchen-sink",
205
packages=find_packages(),
216
install_requires=[
22-
f"dagster{pin}",
23-
f"dagster-webserver{pin}",
7+
"dagster",
8+
"dagster-webserver",
249
"dagster-dbt",
2510
"dbt-core>=1.4.0",
2611
],

0 commit comments

Comments
 (0)