Skip to content

Commit 8ee2c2a

Browse files
authored
Merge pull request #107 from akretion/py-shift
shift Python versions
2 parents f6f6f8c + 88c990a commit 8ee2c2a

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
include:
19-
- {name: Python 3.7, python: 3.7, os: ubuntu}
2019
- {name: Python 3.8, python: 3.8, os: ubuntu}
21-
- {name: Python 3.9, python: 3.9-dev, os: ubuntu}
22-
- {name: Python 3.10, python: 3.10.0-beta - 3.10, os: ubuntu}
20+
- {name: Python 3.9, python: '3.9', os: ubuntu}
21+
- {name: Python 3.10, python: '3.10', os: ubuntu}
22+
- {name: Python 3.11, python: '3.11', os: ubuntu}
23+
- {name: Python 3.12, python: '3.12', os: ubuntu}
2324
steps:
2425
- uses: actions/checkout@v2
2526
- name: Set up Python ${{ matrix.python }}

setup.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ classifiers =
1616
Programming Language :: Python
1717
Programming Language :: Python :: 3
1818
Programming Language :: Python :: 3 :: Only
19-
Programming Language :: Python :: 3.6
20-
Programming Language :: Python :: 3.7
2119
Programming Language :: Python :: 3.8
2220
Programming Language :: Python :: 3.9
21+
Programming Language :: Python :: 3.10
22+
Programming Language :: Python :: 3.11
23+
Programming Language :: Python :: 3.12
2324
Programming Language :: Python :: Implementation :: CPython
2425
Programming Language :: Python :: Implementation :: PyPy
2526
Topic :: Software Development :: Code Generators

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
# isolated_build = True
3-
envlist = py37,py38,py39,py310,pypy3
3+
envlist = py38,py39,py310,py311,py312,pypy3
44
skip_missing_interpreters = true
55

66
[testenv]
@@ -9,7 +9,7 @@ commands =
99
pytest --cov=./nfelib --cov-report=xml
1010

1111
[testenv:build]
12-
basepython = python3.7
12+
basepython = python3.8
1313
skip_install = true
1414
deps =
1515
wheel

0 commit comments

Comments
 (0)