Skip to content

Commit

Permalink
don't publish to pypi on 3.12 just yet
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbelanger committed May 14, 2024
1 parent 592f251 commit 1c0d6d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pypiupload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [2.7, 3.x]
python-version: [2.7, 3.7]

steps:
- uses: actions/[email protected]
Expand All @@ -34,9 +34,9 @@ jobs:
- name: Build
run: |
python setup.py bdist_wheel
- name: Build Sources (3.x)
- name: Build Sources (Python 3)
run: python setup.py sdist
if: matrix.python-version == '3.x'
if: ${{ matrix.python-version != '2.7' }}
- name: Publish
env:
TWINE_USERNAME: __token__
Expand Down

0 comments on commit 1c0d6d3

Please sign in to comment.