Skip to content

Commit b928e36

Browse files
committed
Drop python 3.9, add python 3.14
1 parent 820baac commit b928e36

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-22.04
77
strategy:
88
matrix:
9-
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13']
9+
python-version: [ '3.10', '3.11', '3.12', '3.13', '3.14' ]
1010
jsonref-version: ["==0.3", ">1"]
1111
steps:
1212
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
### Removed
10+
11+
- We no longer support Python 3.9 - security support has ended
12+
913
## [0.27.0] - 2024-12-18
1014

1115
### Added

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ def run(self):
6161
},
6262
package_data={"flattentool": ["locale/*/*/*.mo", "locale/*/*/*.po"]},
6363
setup_requires=["babel"],
64-
python_requires=">=3.9.0",
64+
python_requires=">=3.10.0",
6565
)

0 commit comments

Comments
 (0)