Skip to content

Commit

Permalink
[dagster-ge] Drop python 3.9 support (#25637)
Browse files Browse the repository at this point in the history
## Summary & Motivation

Second order dependencies prevent `dagster-ge` from being supported on
3.9.

## How I Tested These Changes

Existing test suite.

## Changelog

[dagster-ge] The minimum Python version for `dagster-ge` is now 3.10.
  • Loading branch information
smackesey authored Oct 30, 2024
1 parent a1fc3f3 commit 46c82a7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,9 @@ def k8s_extra_cmds(version: str, _) -> List[str]:
),
PackageSpec(
"examples/with_great_expectations",
unsupported_python_versions=[
AvailablePythonVersion.V3_9,
],
),
PackageSpec(
"examples/with_pyspark",
Expand Down Expand Up @@ -636,6 +639,9 @@ def tox_factors_for_folder(tests_folder_name: str) -> List[str]:
),
PackageSpec(
"python_modules/libraries/dagster-ge",
unsupported_python_versions=[
AvailablePythonVersion.V3_9,
],
),
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 @@ -30,7 +30,7 @@ def get_version() -> str:
],
packages=find_packages(exclude=["dagster_ge_tests*"]),
include_package_data=True,
python_requires=">=3.9,<3.13",
python_requires=">=3.10,<3.13",
install_requires=[
f"dagster{pin}",
f"dagster-pandas{pin}",
Expand Down

0 comments on commit 46c82a7

Please sign in to comment.