Skip to content

Commit bba3148

Browse files
committed
Python 3.9 drop
1 parent bf12c9b commit bba3148

File tree

5 files changed

+8
-57
lines changed

5 files changed

+8
-57
lines changed

.github/workflows/python-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
17+
python-version: ['3.10', '3.11', '3.12', '3.13']
1818
fail-fast: false
1919
steps:
2020
- uses: actions/checkout@v4
@@ -72,7 +72,7 @@ jobs:
7272
- name: "Setup Python"
7373
uses: actions/setup-python@v5
7474
with:
75-
python-version: 3.9
75+
python-version: "3.10"
7676

7777
- name: Get full Python version
7878
id: full-python-version

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ formats: all
88
build:
99
os: ubuntu-20.04
1010
tools:
11-
python: "3.9"
11+
python: "3.10"
1212
jobs:
1313
post_create_environment:
1414
- pip install poetry

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ language: python
22
sudo: false
33
matrix:
44
include:
5-
- python: 3.9
65
- python: 3.10
76
- python: 3.11
87
- python: 3.12

poetry.lock

Lines changed: 4 additions & 51 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ classifiers = [
4343
"Topic :: Software Development :: Libraries :: Python Modules",
4444
"Operating System :: OS Independent",
4545
"Programming Language :: Python :: 3",
46-
"Programming Language :: Python :: 3.9",
4746
"Programming Language :: Python :: 3.10",
4847
"Programming Language :: Python :: 3.11",
4948
"Programming Language :: Python :: 3.12",
@@ -56,7 +55,7 @@ include = [
5655
]
5756

5857
[tool.poetry.dependencies]
59-
python = "^3.9.0"
58+
python = "^3.10.0"
6059
jsonschema = "^4.19.1"
6160
rfc3339-validator = "*" # requred by jsonschema for date-time checker
6261
jsonschema-specifications = ">=2024.10.1"

0 commit comments

Comments
 (0)