Skip to content

Commit 29201d5

Browse files
committed
Drop support for python3.8 and python3.9
1 parent ce1892b commit 29201d5

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
os: [ubuntu-latest]
15-
python: ['pypy3.9', '3.8', '3.9', '3.10', '3.11', '3.12']
15+
python: ['pypy3.11', '3.10', '3.11', '3.12']
1616
toxenv: [py]
1717
include:
1818
# windows
@@ -21,7 +21,7 @@ jobs:
2121
toxenv: py
2222
# typing
2323
- os: ubuntu-latest
24-
python: '3.8'
24+
python: '3.10'
2525
toxenv: typing
2626
# misc
2727
- os: ubuntu-latest

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ repos:
3030
rev: v3.1.0
3131
hooks:
3232
- id: setup-cfg-fmt
33-
args: [--include-version-classifiers, --min-py-version=3.8]
33+
args: [--include-version-classifiers]
3434
#- repo: https://github.com/pre-commit/mirrors-mypy
3535
# rev: v0.910-1
3636
# hooks:

setup.cfg

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ classifiers =
1616
Programming Language :: Python
1717
Programming Language :: Python :: 3
1818
Programming Language :: Python :: 3 :: Only
19-
Programming Language :: Python :: 3.8
20-
Programming Language :: Python :: 3.9
2119
Programming Language :: Python :: 3.10
2220
Programming Language :: Python :: 3.11
2321
Programming Language :: Python :: 3.12
@@ -29,7 +27,7 @@ project_urls =
2927

3028
[options]
3129
packages = find:
32-
python_requires = >=3.8
30+
python_requires = >=3.10
3331
include_package_data = True
3432
package_dir = =src
3533

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{37,38,39,310,311,312},lint,typing
2+
envlist = py{310,311,312},lint,typing
33

44
[testenv]
55
pip_pre = False

0 commit comments

Comments
 (0)