Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dagster-io/dagster
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3a9a6ea7aaa8f2729d6f36b0772dc8d6fc4b03c6
Choose a base ref
..
head repository: dagster-io/dagster
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ddb9c3d5580989995c4cc82d45c96591e1256b9a
Choose a head ref
Showing 536 changed files with 25,188 additions and 17,762 deletions.
35 changes: 29 additions & 6 deletions .buildkite/defines.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,44 @@
# This should be an enum once we make our own buildkite AMI with py3
class SupportedPython(object):
class SupportedPython:
V3_8 = "3.8.1"
V3_7 = "3.7.6"
V3_6 = "3.6.10"
V3_5 = "3.5.8"
V2_7 = "2.7.17"


# See: https://github.com/dagster-io/dagster/issues/1960
SupportedPythons = [
SupportedPython.V3_7,
SupportedPython.V3_6,
SupportedPython.V2_7,
SupportedPython.V3_5,
SupportedPython.V3_6,
SupportedPython.V3_7,
SupportedPython.V3_8,
]

# See: https://github.com/dagster-io/dagster/issues/1960
SupportedPythonsNo38 = [
SupportedPython.V2_7,
SupportedPython.V3_5,
SupportedPython.V3_6,
SupportedPython.V3_7,
]


# See: https://github.com/dagster-io/dagster/issues/1960
SupportedPython3s = [SupportedPython.V3_7, SupportedPython.V3_6, SupportedPython.V3_5]
SupportedPython3sNo38 = [SupportedPython.V3_7, SupportedPython.V3_6, SupportedPython.V3_5]

SupportedPython3s = [
SupportedPython.V3_5,
SupportedPython.V3_6,
SupportedPython.V3_7,
SupportedPython.V3_8,
]


SupportPython3sEx35 = [SupportedPython.V3_7, SupportedPython.V3_6]
TOX_MAP = {
SupportedPython.V3_8: "py38",
SupportedPython.V3_7: "py37",
SupportedPython.V3_6: "py36",
SupportedPython.V3_5: "py35",
SupportedPython.V2_7: "py27",
}
Loading