Skip to content

Commit

Permalink
Install dagster in an extra (#10855)
Browse files Browse the repository at this point in the history
We need this to conditionally run/skip tests correctly.

But we don't want this actual pin because it breaks our releases.
  • Loading branch information
jmsanders authored and gibsondan committed Dec 2, 2022
1 parent 69180f3 commit 0efc9d0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python_modules/automation/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
],
packages=find_packages(exclude=["automation_tests*"]),
install_requires=[
"dagster==0+dev",
"autoflake",
"boto3",
"packaging>=20.9",
Expand All @@ -30,6 +29,11 @@
"wheel==0.33.6",
"urllib3",
],
extras_require={
"buildkite": [
"dagster==0+dev", # Support buildkite conditional running of tests
]
},
entry_points={
"console_scripts": [
"dagster-image = automation.docker.cli:main",
Expand Down

0 comments on commit 0efc9d0

Please sign in to comment.