Skip to content

Commit 048717c

Browse files
committed
chore: update python support in setup.cfg, update ci matrix
* update classifiers in setup.cfg * ci test with python 3.8-3.12 * drop python 3.7 since it's EOL
1 parent ee0cf1b commit 048717c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
fail-fast: false
4040
matrix:
4141
os: [ubuntu-latest]
42-
python: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
42+
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
4343

4444
steps:
4545
- name: Checkout code

setup.cfg

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ classifiers =
1313
Topic :: Software Development :: Quality Assurance
1414
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
1515
Programming Language :: Python :: 3
16-
Programming Language :: Python :: 3.6
17-
Programming Language :: Python :: 3.7
1816
Programming Language :: Python :: 3.8
1917
Programming Language :: Python :: 3.9
18+
Programming Language :: Python :: 3.10
19+
Programming Language :: Python :: 3.11
20+
Programming Language :: Python :: 3.12
2021
Environment :: Console
2122
Operating System :: OS Independent
2223
keywords =
@@ -28,10 +29,9 @@ project_urls =
2829

2930
[options]
3031
packages = find:
31-
python_requires = >= 3.6
32+
python_requires = >= 3.8
3233
install_requires =
3334
configargparse
34-
importlib-metadata; python_version < "3.8"
3535

3636
[options.entry_points]
3737
console_scripts =

0 commit comments

Comments
 (0)