Skip to content

Commit

Permalink
Removed py3.8 from tests, updated action version, disabled fail-fast
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobpennington committed Feb 29, 2024
1 parent 43e19f0 commit 486a76f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python: ["3.8", "3.9", "3.10"]
python: ["3.9", "3.10"]
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}

Expand All @@ -44,7 +45,8 @@ jobs:
PLATFORM: ${{ matrix.platform }}

- name: Coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4

deploy:
# this will run when you have tagged a commit, starting with "v*"
# and requires that you have put your twine API key in your
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# For more information about tox, see https://tox.readthedocs.io/en/latest/
[tox]
envlist = py{38,39,310}-{linux,macos,windows}
envlist = py{39,310}-{linux,macos,windows}

[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310

Expand Down

0 comments on commit 486a76f

Please sign in to comment.