Skip to content

Commit

Permalink
Merge pull request #107 from akretion/py-shift
Browse files Browse the repository at this point in the history
shift Python versions
  • Loading branch information
rvalyi committed Jun 19, 2024
2 parents f6f6f8c + 88c990a commit 8ee2c2a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ jobs:
fail-fast: false
matrix:
include:
- {name: Python 3.7, python: 3.7, os: ubuntu}
- {name: Python 3.8, python: 3.8, os: ubuntu}
- {name: Python 3.9, python: 3.9-dev, os: ubuntu}
- {name: Python 3.10, python: 3.10.0-beta - 3.10, os: ubuntu}
- {name: Python 3.9, python: '3.9', os: ubuntu}
- {name: Python 3.10, python: '3.10', os: ubuntu}
- {name: Python 3.11, python: '3.11', os: ubuntu}
- {name: Python 3.12, python: '3.12', os: ubuntu}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
Expand Down
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
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
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Code Generators
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
# isolated_build = True
envlist = py37,py38,py39,py310,pypy3
envlist = py38,py39,py310,py311,py312,pypy3
skip_missing_interpreters = true

[testenv]
Expand All @@ -9,7 +9,7 @@ commands =
pytest --cov=./nfelib --cov-report=xml

[testenv:build]
basepython = python3.7
basepython = python3.8
skip_install = true
deps =
wheel
Expand Down

0 comments on commit 8ee2c2a

Please sign in to comment.