Skip to content

Commit

Permalink
[dagster-ge] drop 3.6 (#7638)
Browse files Browse the repository at this point in the history
https://pypi.org/project/great-expectations/#history
3.6 support no longer listed

## Test Plan

bk
  • Loading branch information
alangenfeld committed Apr 28, 2022
1 parent b9b9d97 commit 67547d0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .buildkite/dagster-buildkite/dagster_buildkite/steps/dagster.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,18 @@ def graphql_pg_extra_cmds_fn(_):
"python_modules/libraries/dagstermill",
tox_env_suffixes=["-papermill1", "-papermill2"],
),
ModuleBuildSpec(
"python_modules/libraries/dagster-ge",
supported_pythons=( # dropped python 3.6 support
[
SupportedPython.V3_7,
SupportedPython.V3_8,
SupportedPython.V3_9,
]
if (branch_name == "master" or is_release_branch(branch_name))
else [SupportedPython.V3_9]
),
),
]


Expand Down
2 changes: 0 additions & 2 deletions python_modules/libraries/dagster-ge/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ def get_version() -> str:
# pylint: disable=line-too-long
url="https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/dagster-ge",
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand All @@ -35,7 +34,6 @@ def get_version() -> str:
install_requires=[
f"dagster{pin}",
f"dagster-pandas{pin}",
"dataclasses; python_version < '3.7'",
"pandas",
"great_expectations >=0.11.9, !=0.12.8, !=0.13.17, !=0.13.27",
],
Expand Down

0 comments on commit 67547d0

Please sign in to comment.