Skip to content

Commit ea47f57

Browse files
committed
[1.9] Remove Python 3.8 Support
1 parent e897e05 commit ea47f57

File tree

108 files changed

+85
-186
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+85
-186
lines changed

.buildkite/dagster-buildkite/dagster_buildkite/python_version.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
class AvailablePythonVersion(str, Enum):
99
# Ordering is important here, because some steps will take the highest/lowest available version.
10-
V3_8 = "3.8"
1110
V3_9 = "3.9"
1211
V3_10 = "3.10"
1312
V3_11 = "3.11"

.buildkite/dagster-buildkite/dagster_buildkite/steps/helm.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ def build_helm_steps() -> List[BuildkiteStep]:
2020
os.path.join("helm", "dagster", "schema"),
2121
unsupported_python_versions=[
2222
# run helm schema tests only once, on the latest python version
23-
AvailablePythonVersion.V3_8,
2423
AvailablePythonVersion.V3_9,
2524
AvailablePythonVersion.V3_10,
2625
AvailablePythonVersion.V3_11,

.buildkite/dagster-buildkite/dagster_buildkite/steps/packages.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,6 @@ def k8s_extra_cmds(version: str, _) -> List[str]:
272272
PackageSpec(
273273
"examples/with_airflow",
274274
unsupported_python_versions=[
275-
AvailablePythonVersion.V3_9,
276275
AvailablePythonVersion.V3_10,
277276
AvailablePythonVersion.V3_11,
278277
AvailablePythonVersion.V3_12,

.buildkite/dagster-buildkite/dagster_buildkite/steps/test_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def build_test_project_steps() -> List[GroupStep]:
6767
)
6868
.on_python_image(
6969
# py version can be bumped when rebuilt
70-
f"buildkite-build-test-project-image:py{AvailablePythonVersion.V3_8}-{BUILDKITE_BUILD_TEST_PROJECT_IMAGE_IMAGE_VERSION}",
70+
f"buildkite-build-test-project-image:py{AvailablePythonVersion.V3_9}-{BUILDKITE_BUILD_TEST_PROJECT_IMAGE_IMAGE_VERSION}",
7171
[
7272
"AIRFLOW_HOME",
7373
"AWS_ACCOUNT_ID",

.buildkite/dagster-buildkite/setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
description="Tools for buildkite automation",
1010
url="https://github.com/dagster-io/dagster/tree/master/.buildkite/dagster-buildkite",
1111
classifiers=[
12-
"Programming Language :: Python :: 3.8",
1312
"Programming Language :: Python :: 3.9",
1413
"Programming Language :: Python :: 3.10",
1514
"License :: OSI Approved :: Apache Software License",

docs/content/concepts/dagster-pipes/aws-glue.mdx

Lines changed: 1 addition & 1 deletion

docs/content/dagster-plus/deployment/serverless.mdx

Lines changed: 2 additions & 2 deletions

docs/dagster-ui-screenshot/setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
description="Utility for taking automated screenshots from the Dagster UI",
1717
classifiers=[
1818
"Programming Language :: Python :: 3.6",
19-
"Programming Language :: Python :: 3.8",
2019
"Programming Language :: Python :: 3.9",
2120
"License :: OSI Approved :: Apache Software License",
2221
"Operating System :: OS Independent",

docs/dagster-university/pages/dagster-dbt/lesson-7/5-preparing-for-a-successful-run.md

Lines changed: 1 addition & 1 deletion

docs/dagster-university/pages/dagster-essentials/lesson-2/requirements-and-installation.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)