Skip to content

Commit

Permalink
[dagster-ge] Drop Python 3.8 support (#25560)
Browse files Browse the repository at this point in the history
## Summary & Motivation

Python 3.8 throwing an error for dagster-ge, and we're dropping 3.8
support soon everywhere anyway. So rm dagster-ge 3.8 support.
  • Loading branch information
smackesey authored Oct 25, 2024
1 parent d0ef97f commit 6dc16aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,9 @@ def tox_factors_for_folder(tests_folder_name: str) -> List[str]:
),
PackageSpec(
"python_modules/libraries/dagster-ge",
unsupported_python_versions=[
AvailablePythonVersion.V3_8,
],
),
PackageSpec(
"python_modules/libraries/dagster-k8s",
Expand Down
2 changes: 1 addition & 1 deletion python_modules/libraries/dagster-ge/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def get_version() -> str:
],
packages=find_packages(exclude=["dagster_ge_tests*"]),
include_package_data=True,
python_requires=">=3.8,<3.13",
python_requires=">=3.9,<3.13",
install_requires=[
f"dagster{pin}",
f"dagster-pandas{pin}",
Expand Down

0 comments on commit 6dc16aa

Please sign in to comment.