Skip to content

Commit 1babb1f

Browse files
committed
Drop Python 3.9
1 parent 0807617 commit 1babb1f

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# Use macos-13 because pip binary packages for ARM aren't
2828
# available for many dependencies
2929
os: [macos-13, macos-14, ubuntu-latest]
30-
python-version: ["3.9", "3.10", "3.11", "3.12"]
30+
python-version: ["3.10", "3.11", "3.12"]
3131
exclude:
3232
# Just run macos tests on one Python version
3333
- os: macos-13
@@ -36,8 +36,6 @@ jobs:
3636
python-version: "3.11"
3737
- os: macos-13
3838
python-version: "3.12"
39-
- os: macos-14
40-
python-version: "3.9"
4139
- os: macos-14
4240
python-version: "3.10"
4341
- os: macos-14

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies = [
1717
"pyranges",
1818
"pyparsing"
1919
]
20-
requires-python = ">=3.9"
20+
requires-python = ">=3.10"
2121
classifiers = [
2222
"Development Status :: 4 - Beta",
2323
"License :: OSI Approved :: Apache Software License",
@@ -28,7 +28,6 @@ classifiers = [
2828
"Intended Audience :: Science/Research",
2929
"Programming Language :: Python",
3030
"Programming Language :: Python :: 3",
31-
"Programming Language :: Python :: 3.9",
3231
"Programming Language :: Python :: 3.10",
3332
"Programming Language :: Python :: 3.11",
3433
"Programming Language :: Python :: 3.12",
@@ -62,8 +61,8 @@ addopts = "--cov=vcztools --cov-report=term-missing"
6261
write_to = "vcztools/_version.py"
6362

6463
[tool.ruff]
65-
# Assume Python 3.9
66-
target-version = "py39"
64+
# Assume Python 3.10
65+
target-version = "py310"
6766

6867
# Same as Black.
6968
line-length = 88

0 commit comments

Comments
 (0)