Skip to content

Commit

Permalink
Add suport for 3.12, drop support for 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Aug 18, 2024
1 parent 192d6ad commit d3854af
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ def get_var(var_name):
'Topic :: Software Development :: Testing',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'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',
],
test_suite=TEST_DIR,
tests_require=test_requirements
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# TODO: implement doc linting
[tox]
envlist = py{37,38,39,310,311}-lint, py37-lintdocstrings, py37-lintreadme, py{37,38,39,310,311}-mypy, py{37,38,39,310,311}-unit
envlist = py{38,39,310,311,312}-lint, py38-lintdocstrings, py38-lintreadme, py{38,39,310,311,312}-mypy, py{38,39,310,311,312}-unit
source_dir = gxformat2
test_dir = tests

[gh-actions]
python =
3.7: py37-unit, py37-mypy, py37-lint, py37-lintdocs, py37-lintdocstrings
3.8: py38-unit, py38-mypy
3.8: py38-unit, py38-mypy, py38-lint, py38-lintdocs, py39-lintdocstrings
3.9: py39-unit, py39-mypy
3.10: py310-unit, py310-mypy
3.11: py311-unit, py311-mypy, py311-lint, py311-lintdocs
3.11: py311-unit, py311-mypy
3.12: py312-unit, py312-mypy, py312-lint, py312-lintdocs

[testenv]
commands =
Expand Down

0 comments on commit d3854af

Please sign in to comment.