Skip to content

Commit

Permalink
maybe fix pipeline (take 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickw444 committed Feb 2, 2024
1 parent 09b2411 commit 9bd8a56
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 14 deletions.
22 changes: 9 additions & 13 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [pypy3, 3.5.10, 3.6.15, 3.7.17, 3.8.18, 3.9.19]
python-version: [pypy3, 3.10, 3.11, 3.12]
include:
- python-version: pypy3
toxenv: pypy3
- python-version: 3.5.10
toxenv: py35
- python-version: 3.6.15
toxenv: py36
- python-version: 3.7.17
toxenv: py37
- python-version: 3.8.18
toxenv: py38
- python-version: 3.9.19
toxenv: py39
- python-version: 3.10
toxenv: py310
- python-version: 3.11
toxenv: py311
- python-version: 3.12
toxenv: py312

steps:
- uses: actions/checkout@v2
Expand All @@ -74,14 +70,14 @@ jobs:
env:
TOXENV: ${{ matrix.toxenv }}
- uses: codecov/codecov-action@v2
if: ${{ matrix.python-version == '3.9.19' }}
if: ${{ matrix.python-version == '3.12' }}
- name: "Build Package 📦"
run: |
git describe --tags --exact-match > VERSION || true
python setup.py sdist bdist_wheel
- uses: actions/upload-artifact@v2
# Only publish artifacts from Python latest build.
if: ${{ matrix.python-version == '3.9.19' }}
if: ${{ matrix.python-version == '3.12' }}
with:
name: dist
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py35,py36,py37,py38,py39,pypy3,lint,docs
envlist = py310,py311,py312,pypy3,lint,docs

[isort]
multi_line_output=3
Expand Down

0 comments on commit 9bd8a56

Please sign in to comment.