Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
oberbichler authored Feb 19, 2022
1 parent c756f57 commit 2de540c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
max-parallel: 4
matrix:
os: [windows-latest, macOS-latest]
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v1
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v1
Expand All @@ -67,10 +67,9 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
PYTHON_VERSION: ${{ matrix.python-version }}
run: |
if [ "${PYTHON_VERSION}" == "3.5" ]; then PYBIN=/opt/python/cp35-cp35m/bin; fi
if [ "${PYTHON_VERSION}" == "3.6" ]; then PYBIN=/opt/python/cp36-cp36m/bin; fi
if [ "${PYTHON_VERSION}" == "3.7" ]; then PYBIN=/opt/python/cp37-cp37m/bin; fi
if [ "${PYTHON_VERSION}" == "3.8" ]; then PYBIN=/opt/python/cp38-cp38/bin; fi
if [ "${PYTHON_VERSION}" == "3.9" ]; then PYBIN=/opt/python/cp39-cp39/bin; fi
PATH=${PYBIN}:$PATH
pip install --upgrade pip
pip install -r requirements.txt
Expand Down

0 comments on commit 2de540c

Please sign in to comment.