Skip to content

Commit

Permalink
temp: run two versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Jul 23, 2023
1 parent 6a207bb commit 1f2129b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
#- "3.9"
#- "3.10"
- "3.11"
- "3.12"
#- "3.12"
#- "pypy-3.8"
#- "pypy-3.9"
#- "pypy-3.10"
Expand All @@ -62,7 +62,9 @@ jobs:
- name: "Set up Python"
uses: "actions/setup-python@v4"
with:
python-version: "${{ matrix.python-version }}"
python-version: |
3.10
3.11
allow-prereleases: true
cache: pip
cache-dependency-path: 'requirements/*.pip'
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ commands =
# https://pypi.org/project/tox-gh/
# PYVERSIONS
python =
3.8 = py38
3.8 = py38,py39,py310
3.9 = py39
3.10 = py310
3.11 = py311
3.11 = py311,py310
3.12 = py312
pypy-3 = pypy3

0 comments on commit 1f2129b

Please sign in to comment.