Skip to content

Commit 98444cb

Browse files
Drop Python 3.8 (#57)
1 parent 74b6faf commit 98444cb

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
test:
3131
strategy:
3232
matrix:
33-
python-version: ['3.7', '3.8', '3.9', '3.10']
33+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
3434
runs-on: ubuntu-latest
3535

3636
steps:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repos:
1010
hooks:
1111
- id: yesqa
1212
- repo: https://github.com/Zac-HD/shed
13-
rev: 2023.6.1 # 0.7 does not support Python 3.7
13+
rev: 2023.6.1
1414
hooks:
1515
- id: shed
1616
args:

setup.cfg

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ classifiers =
1919

2020
License :: OSI Approved :: Apache Software License
2121

22-
Programming Language :: Python :: 3.7
23-
Programming Language :: Python :: 3.8
2422
Programming Language :: Python :: 3.9
2523
Programming Language :: Python :: 3.10
24+
Programming Language :: Python :: 3.11
25+
Programming Language :: Python :: 3.12
26+
Programming Language :: Python :: 3.13
2627

2728
Topic :: Software Development :: Testing
2829

@@ -32,7 +33,7 @@ classifiers =
3233
Typing :: Typed
3334

3435
[options]
35-
python_requires = >=3.7
36+
python_requires = >=3.9
3637
packages = find:
3738
include_package_data = True
3839

0 commit comments

Comments
 (0)