Skip to content

Commit f8fd03c

Browse files
committed
Do not pollute PyPI with half-handed packages
1 parent f0ffaee commit f8fd03c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
test:
66
strategy:
77
matrix:
8-
python-version: [2.7, 3.8]
8+
python_version: [2.7, 3.8]
99
os: [ubuntu-latest]
1010
runs-on: ${{ matrix.os }}
1111
timeout-minutes: 30
@@ -26,10 +26,10 @@ jobs:
2626
path: ~/.cache/pip
2727
key: ${{ matrix.os }}-cache-pip
2828

29-
- name: Set up Python ${{ matrix.python-version }}
29+
- name: Set up Python ${{ matrix.python_version }}
3030
uses: actions/setup-python@v4
3131
with:
32-
python-version: ${{ matrix.python-version }}
32+
python-version: ${{ matrix.python_version }}
3333

3434
- name: Verify tag against version
3535
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
@@ -162,6 +162,7 @@ jobs:
162162
pwn libcdb hash b229d1da1e161f95e839cf90cded5f719e5de308
163163
164164
- name: Build source and wheel distributions
165+
if: matrix.python_version > '2.7'
165166
run: |
166167
python -m build
167168

0 commit comments

Comments
 (0)