Skip to content

Commit

Permalink
remove Python 3.12 from GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Ho-Yeuk Cheung committed Oct 9, 2023
1 parent 31e5baa commit 2728521
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v4
Expand All @@ -40,7 +40,7 @@ jobs:
run: |
pytest
- name: Build and upload to PyPI
if: ${{ (matrix.python-version == '3.12') }}
if: ${{ (matrix.python-version == '3.11') }}
run: |
python -m build
python -m twine upload dist/*
Expand Down

0 comments on commit 2728521

Please sign in to comment.