Skip to content

Commit

Permalink
Adding python312, removing 37 because EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
deniszh committed Aug 25, 2024
1 parent 5e70cda commit a04dc36
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/tests-amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ jobs:
strategy:
matrix:
include:
- name: "Python 3.7"
python-version: '3.7'
toxenv: 'py37'
- name: "Python 3.8"
python-version: '3.8'
toxenv: 'py38'
Expand All @@ -31,9 +28,9 @@ jobs:
- name: "Python 3.11"
python-version: '3.11'
toxenv: 'py311'
# - name: "Python 3.12"
# python-version: '3.12'
# toxenv: 'py312'
- name: "Python 3.12"
python-version: '3.12'
toxenv: 'py312'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -51,18 +48,18 @@ jobs:
run: |
tox
- name: Linting
if: ${{ matrix.python-version==3.11 }}
if: ${{ matrix.python-version==3.12 }}
env:
TOXENV: lint
run: |
tox
- name: Run Codecov
if: ${{ matrix.python-version==3.11 }}
if: ${{ matrix.python-version==3.12 }}
env:
TOXENV: lint
run: |
pip install codecov
codecov
- name: Upload coverage to Codecov
if: ${{ matrix.python-version==3.11 }}
if: ${{ matrix.python-version==3.12 }}
uses: codecov/codecov-action@v3
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{37,38,39,310,311,312,py3}{,-pyhash},
py{38,39,310,311,312,py3}{,-pyhash},
lint,
benchmark

Expand Down

0 comments on commit a04dc36

Please sign in to comment.