Skip to content

Commit cbb177a

Browse files
committed
deprecates Python 3.7
1 parent b6f2d63 commit cbb177a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
strategy:
130130
fail-fast: true
131131
matrix:
132-
python-version: ["3.7", "3.8", "3.9", "3.10"]
132+
python-version: ["3.8", "3.9", "3.10", "3.11"]
133133
runs-on: "ubuntu-20.04"
134134
env:
135135
PYTHON_VER: "${{ matrix.python-version }}"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ include = [
1616
]
1717

1818
[tool.poetry.dependencies]
19-
python = "^3.7"
19+
python = ">=3.8,<4.0"
2020
pydantic = "^1.7.4,!=1.8,!=1.8.1"
2121
structlog = ">= 20.1.0, < 23.0.0"
2222
packaging = ">= 21.3, < 24.0"

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def is_truthy(arg):
4747

4848

4949
# Can be set to a separate Python version to be used for launching or building image
50-
PYTHON_VER = os.getenv("PYTHON_VER", os.getenv("TRAVIS_PYTHON_VERSION", "3.7"))
50+
PYTHON_VER = os.getenv("PYTHON_VER", os.getenv("TRAVIS_PYTHON_VERSION", "3.8"))
5151
# Name of the docker image/image
5252
NAME = os.getenv("IMAGE_NAME", f"diffsync-py{PYTHON_VER}")
5353
# Tag for the image

0 commit comments

Comments
 (0)