Skip to content

Commit ad8fbe4

Browse files
committed
don't publish to pypi on 3.12 just yet
1 parent 0bf9ac1 commit ad8fbe4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pypiupload.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-20.04
1313
strategy:
1414
matrix:
15-
python-version: [2.7, 3.x]
15+
python-version: [2.7, 3.7]
1616

1717
steps:
1818
- uses: actions/checkout@v2.3.4
@@ -34,9 +34,9 @@ jobs:
3434
- name: Build
3535
run: |
3636
python setup.py bdist_wheel
37-
- name: Build Sources (3.x)
37+
- name: Build Sources (Python 3)
3838
run: python setup.py sdist
39-
if: matrix.python-version == '3.x'
39+
if: ${{ matrix.python-version != '2.7' }}
4040
- name: Publish
4141
env:
4242
TWINE_USERNAME: __token__

0 commit comments

Comments
 (0)