Skip to content

Commit

Permalink
Merge pull request #79 from ocefpaf/py39-wheel
Browse files Browse the repository at this point in the history
build wheel for Python 3.9
  • Loading branch information
efiring authored Aug 17, 2021
2 parents 63a7747 + 591d24e commit 69a903b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

PYTHONS=("cp36-cp36m" "cp37-cp37m" "cp38-cp38")
PYTHONS=("cp37-cp37m" "cp38-cp38" "cp39-cp39")

for PYTHON in ${PYTHONS[@]}; do
/opt/python/${PYTHON}/bin/pip install --upgrade pip wheel setuptools setuptools_scm pep517 twine auditwheel
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: copy manylinux wheels
run: |
mkdir dist
cp wheelhouse/gsw*-manylinux2010_x86_64.whl dist/
cp wheelhouse/gsw*.whl dist/
- name: CheckFiles
run: |
Expand All @@ -38,4 +38,4 @@ jobs:
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}
password: ${{ secrets.PYPI_PASSWORD }}
2 changes: 1 addition & 1 deletion .github/workflows/build_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [macos-latest]
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [windows-latest]
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tarball-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ jobs:
shell: bash -l {0}
run: |
source activate TEST
python -m build --skip-dependencies --sdist --wheel .
python -m build --skip-dependency-check --sdist --wheel .
check-manifest --verbose
twine check dist/*

0 comments on commit 69a903b

Please sign in to comment.