Skip to content

Commit 4bd142a

Browse files
authored
Fix Python 3.9 EOL (#433)
Previously, Python 3.9 reached its EOL. This replace all references to Python 3.9 within the SDK with references to Python 3.10. Fixes #432
1 parent e622edc commit 4bd142a

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: ci
33
on: [push, pull_request]
44

55
env:
6-
X_PYTHON_MIN_VERSION: "3.9"
6+
X_PYTHON_MIN_VERSION: "3.10"
77
X_PYTHON_MAX_VERSION: "3.12"
88

99
jobs:
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ubuntu-latest
4646
strategy:
4747
matrix:
48-
python-version: ["3.9", "3.12"]
48+
python-version: ["3.10", "3.12"]
4949
env:
5050
COUCHDB_ADMIN_PASSWORD: "yo0Quai3"
5151
# (2024-10-11, s-heppner)
@@ -208,7 +208,7 @@ jobs:
208208
runs-on: ubuntu-latest
209209
strategy:
210210
matrix:
211-
python-version: ["3.9", "3.12"]
211+
python-version: ["3.10", "3.12"]
212212
defaults:
213213
run:
214214
working-directory: ./compliance_tool

compliance_tool/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ classifiers = [
3434
"Operating System :: OS Independent",
3535
"Development Status :: 5 - Production/Stable"
3636
]
37-
requires-python = ">=3.9"
37+
requires-python = ">=3.10"
3838
dependencies = [
3939
"pyecma376-2>=0.2.4",
4040
"jsonschema>=4.21.1",

sdk/.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: 2
66
build:
77
os: ubuntu-20.04
88
tools:
9-
python: "3.9"
9+
python: "3.10"
1010

1111
sphinx:
1212
configuration: docs/source/conf.py

sdk/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ classifiers = [
3434
"Operating System :: OS Independent",
3535
"Development Status :: 5 - Production/Stable"
3636
]
37-
requires-python = ">=3.9"
37+
requires-python = ">=3.10"
3838
dependencies = [
3939
"lxml>=6.0.2",
4040
"python-dateutil>=2.8,<3",

server/app/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ classifiers = [
3434
"Operating System :: OS Independent",
3535
"Development Status :: 5 - Production/Stable"
3636
]
37-
requires-python = ">=3.9"
37+
requires-python = ">=3.10"
3838
dependencies = [
3939
"urllib3>=1.26,<3",
4040
"Werkzeug>=3.0.3,<4",

0 commit comments

Comments
 (0)