Skip to content

Commit 12135e0

Browse files
authored
Drop support for 3.8 and 3.9
1 parent 40f5a93 commit 12135e0

File tree

4 files changed

+607
-611
lines changed

4 files changed

+607
-611
lines changed

.github/workflows/unittests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ jobs:
55
name: Run unit tests
66
runs-on: ${{ matrix.os }}
77
env:
8-
USING_COVERAGE: '3.10'
8+
USING_COVERAGE: '3.12'
99
strategy:
1010
matrix:
1111
os: [ubuntu-latest, macos-latest, windows-latest]
12-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
12+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1313
steps:
1414
- uses: actions/checkout@master
1515

.github/workflows/unittests_codecov.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
name: Run unit tests with codecov upload
1414
runs-on: ${{ matrix.os }}
1515
env:
16-
USING_COVERAGE: '3.10'
16+
USING_COVERAGE: '3.12'
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, macos-latest, windows-latest]
20-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
20+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2121
steps:
2222
- uses: actions/checkout@master
2323

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,11 @@ classifiers=[
2222
"Operating System :: OS Independent",
2323
"Programming Language :: Python",
2424
"Programming Language :: Python :: 3",
25-
"Programming Language :: Python :: 3.8",
26-
"Programming Language :: Python :: 3.9",
2725
"Programming Language :: Python :: 3.10",
2826
"Programming Language :: Python :: 3.11",
2927
"Programming Language :: Python :: 3.12",
3028
"Programming Language :: Python :: 3.13",
29+
"Programming Language :: Python :: 3.14",
3130
"License :: OSI Approved :: MIT License",
3231
]
3332

@@ -36,7 +35,6 @@ dependencies = [
3635
"babel>=2.7.0",
3736
"gitpython>=3.1.44",
3837
"mkdocs>=1.0",
39-
"pytz>=2025.1",
4038
]
4139

4240
[project.urls]

0 commit comments

Comments
 (0)