Skip to content

Commit

Permalink
chore: update python support in setup.cfg, update ci matrix
Browse files Browse the repository at this point in the history
* update classifiers in setup.cfg
* ci test with python 3.8-3.12
* drop python 3.7 since it's EOL
  • Loading branch information
wpbonelli committed Mar 9, 2024
1 parent ee0cf1b commit 048717c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- name: Checkout code
Expand Down
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ classifiers =
Topic :: Software Development :: Quality Assurance
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Environment :: Console
Operating System :: OS Independent
keywords =
Expand All @@ -28,10 +29,9 @@ project_urls =

[options]
packages = find:
python_requires = >= 3.6
python_requires = >= 3.8
install_requires =
configargparse
importlib-metadata; python_version < "3.8"

[options.entry_points]
console_scripts =
Expand Down

0 comments on commit 048717c

Please sign in to comment.