Skip to content

Commit

Permalink
Update setup.py and CI
Browse files Browse the repository at this point in the history
  • Loading branch information
yvaucher committed Oct 6, 2024
1 parent 4a6e996 commit b4e05a5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,16 @@ jobs:
fail-fast: false
matrix:
include:
- PYTHON_VERSION: "3.8"
os: ubuntu-latest
- PYTHON_VERSION: "3.9"
os: ubuntu-latest
- PYTHON_VERSION: "3.10"
os: ubuntu-latest
- PYTHON_VERSION: "3.11"
os: ubuntu-latest
- PYTHON_VERSION: "3.12"
os: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand Down
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,19 @@
setup_requires=[
'setuptools_scm',
],
python_requires='>=3.7',
python_requires='>=3.8',
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: POSIX',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Programming Language :: Python :: 3.6',
'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',
]
)

0 comments on commit b4e05a5

Please sign in to comment.