Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiedemaria committed Sep 22, 2023
1 parent 959261f commit 7c8832f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions python_modules/dagster/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ def get_version() -> str:
# grpcio 1.44.0 is the min version compatible with both protobuf 3 and 4
GRPC_VERSION_FLOOR = "1.44.0"

ver = get_version()
# dont pin dev installs to avoid pip dep resolver issues
pin = "" if ver == "1!0+dev" else f"=={ver}"
# ver = get_version()
# # dont pin dev installs to avoid pip dep resolver issues
# pin = "" if ver == "1!0+dev" else f"=={ver}"

setup(
name="dagster",
Expand Down Expand Up @@ -107,7 +107,7 @@ def get_version() -> str:
"universal_pathlib",
# https://github.com/pydantic/pydantic/issues/5821
"pydantic != 1.10.7,<2.0.0",
f"dagster-ext-process{pin}",
# f"dagster-ext-process{pin}",
],
extras_require={
"docker": ["docker"],
Expand Down
2 changes: 1 addition & 1 deletion python_modules/dagster/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ deps =
general_tests_old_protobuf: protobuf<4
-e ../dagster-test
-e .[mypy,test,pyright]
-e ../dagster-ext
; -e ../dagster-ext
allowlist_externals =
/bin/bash
commands =
Expand Down

0 comments on commit 7c8832f

Please sign in to comment.