Skip to content

Commit

Permalink
Merge pull request #85 from pythonspeed/83-python-3.9
Browse files Browse the repository at this point in the history
Add support for Python 3.9.
  • Loading branch information
itamarst authored Nov 30, 2020
2 parents 5995067 + 0c1b4e6 commit e435d3a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions .changelog/83.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fil now supports Python 3.9.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: "${{ matrix.os }}: Python ${{ matrix.python-version }}"
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8"]
python-version: ["3.6", "3.7", "3.8", "3.9"]
os: ["ubuntu-latest", "macos-latest"]

runs-on: "${{ matrix.os }}"
Expand All @@ -27,7 +27,7 @@ jobs:
with:
# We need tags to get the correct code version:
fetch-depth: 0
- uses: "actions/setup-python@v1"
- uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"
- uses: "actions-rs/toolchain@v1"
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pytest
pampy
numpy
scikit-image
#scikit-image
cython
black
towncrier==19.9.0rc1
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def read(path):
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
],
python_requires=">=3.6",
Expand Down
3 changes: 3 additions & 0 deletions wheels/build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ rm -rf build

/opt/python/cp38-cp38/bin/python3 setup.py bdist_wheel -d /tmp/wheel

/opt/python/cp39-cp39/bin/python3 setup.py bdist_wheel -d /tmp/wheel

auditwheel repair --plat manylinux2010_x86_64 -w dist/ /tmp/wheel/filprofiler*cp36*whl
auditwheel repair --plat manylinux2010_x86_64 -w dist/ /tmp/wheel/filprofiler*cp37*whl
auditwheel repair --plat manylinux2010_x86_64 -w dist/ /tmp/wheel/filprofiler*cp38*whl
auditwheel repair --plat manylinux2010_x86_64 -w dist/ /tmp/wheel/filprofiler*cp39*whl

0 comments on commit e435d3a

Please sign in to comment.