Skip to content

Commit 73354d6

Browse files
committed
Drop support for Python <=3.9
1 parent 25ef4b1 commit 73354d6

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Run the test suite
2020
strategy:
2121
matrix:
22-
python-version: [3.9, 3.13] # no particular need for in-between versions
22+
python-version: ["3.10", 3.13] # no particular need for in-between versions
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

ruff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
indent-width = 4
22
line-length = 100
3-
target-version = "py39"
3+
target-version = "py310"
44

55
[lint]
66
select = [

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
url="https://github.com/hartwork/fetchcommandwrapper",
2020
author="Sebastian Pipping",
2121
author_email="sping@gentoo.org",
22-
python_requires=">=3.9",
22+
python_requires=">=3.10",
2323
setup_requires=[
2424
"setuptools>=38.6.0", # for long_description_content_type
2525
],
@@ -43,7 +43,6 @@
4343
"Intended Audience :: System Administrators",
4444
"Programming Language :: Python",
4545
"Programming Language :: Python :: 3",
46-
"Programming Language :: Python :: 3.9",
4746
"Programming Language :: Python :: 3.10",
4847
"Programming Language :: Python :: 3.11",
4948
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)