Skip to content

Commit b64ab94

Browse files
committed
Remove Python 3.9 support
1 parent 40521c8 commit b64ab94

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/python-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
strategy:
4949
matrix:
50-
python: ['3.9', '3.10', '3.11', '3.12']
50+
python: ['3.10', '3.11', '3.12']
5151

5252
steps:
5353
- uses: actions/checkout@v5
@@ -71,7 +71,7 @@ jobs:
7171
runs-on: ubuntu-latest
7272
strategy:
7373
matrix:
74-
python: ['3.9', '3.10', '3.11', '3.12']
74+
python: ['3.10', '3.11', '3.12']
7575

7676
steps:
7777
- uses: actions/checkout@v5

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ license = "Apache License 2.0"
2626
classifiers = [
2727
"License :: OSI Approved :: Apache Software License",
2828
"Operating System :: OS Independent",
29-
"Programming Language :: Python :: 3.9",
3029
"Programming Language :: Python :: 3.10",
3130
"Programming Language :: Python :: 3.11",
3231
"Programming Language :: Python :: 3.12",
@@ -50,7 +49,7 @@ include = [
5049
]
5150

5251
[tool.poetry.dependencies]
53-
python = "^3.9.2, !=3.9.7"
52+
python = ">=3.10,<3.13"
5453
mmh3 = ">=4.0.0,<6.0.0"
5554
requests = ">=2.20.0,<3.0.0"
5655
click = ">=7.1.1,<9.0.0"

0 commit comments

Comments
 (0)