Skip to content

Commit 6b4efba

Browse files
tomwhitejeromekelleher
authored andcommitted
Remove support for Python 3.9 due to Click 8.2.0
1 parent 291800b commit 6b4efba

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
@@ -22,7 +22,7 @@ dependencies = [
2222
"pyranges!=0.1.3",
2323
"pyparsing>=3"
2424
]
25-
requires-python = ">=3.9"
25+
requires-python = ">=3.10"
2626
classifiers = [
2727
"Development Status :: 4 - Beta",
2828
"License :: OSI Approved :: Apache Software License",
@@ -33,7 +33,6 @@ classifiers = [
3333
"Intended Audience :: Science/Research",
3434
"Programming Language :: Python",
3535
"Programming Language :: Python :: 3",
36-
"Programming Language :: Python :: 3.9",
3736
"Programming Language :: Python :: 3.10",
3837
"Programming Language :: Python :: 3.11",
3938
"Programming Language :: Python :: 3.12",
@@ -66,8 +65,8 @@ addopts = "--cov=vcztools --cov-report=term-missing"
6665
write_to = "vcztools/_version.py"
6766

6867
[tool.ruff]
69-
# Assume Python 3.9
70-
target-version = "py39"
68+
# Assume Python 3.10
69+
target-version = "py310"
7170

7271
# Same as Black.
7372
line-length = 88

0 commit comments

Comments
 (0)