Skip to content

Commit

Permalink
Generate python 3.9 binary wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
daybarr committed Nov 17, 2020
1 parent 3b081a2 commit c282866
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .appveyor.yml
Expand Up @@ -123,6 +123,28 @@ environment:
PYTHON_VERSION: '3.8'
PYTHON_ARCH: '64'
WHEEL_PATH: .tox/dist
- TOXENV: py39-cover,codecov,coveralls
TOXPYTHON: C:\Python39\python.exe
PYTHON_HOME: C:\Python39
PYTHON_VERSION: '3.9'
PYTHON_ARCH: '32'
- TOXENV: py39-cover,codecov,coveralls
TOXPYTHON: C:\Python39-x64\python.exe
PYTHON_HOME: C:\Python39-x64
PYTHON_VERSION: '3.9'
PYTHON_ARCH: '64'
- TOXENV: py39-nocov
TOXPYTHON: C:\Python39\python.exe
PYTHON_HOME: C:\Python39
PYTHON_VERSION: '3.9'
PYTHON_ARCH: '32'
WHEEL_PATH: .tox/dist
- TOXENV: py39-nocov
TOXPYTHON: C:\Python39-x64\python.exe
PYTHON_HOME: C:\Python39-x64
PYTHON_VERSION: '3.9'
PYTHON_ARCH: '64'
WHEEL_PATH: .tox/dist
init:
- ps: echo $env:TOXENV
- ps: ls C:\Python*
Expand Down
18 changes: 18 additions & 0 deletions .travis.yml
Expand Up @@ -120,6 +120,24 @@ matrix:
- WHEEL_MANYLINUX="1 cp38"
python: '3.8'
arch: amd64
- env:
- TOXENV=py39-cover,codecov,extension-coveralls,coveralls
python: '3.9'
arch: arm64
- env:
- TOXENV=py39-cover,codecov,extension-coveralls,coveralls
python: '3.9'
arch: amd64
- env:
- TOXENV=py39-nocov
- WHEEL_MANYLINUX="2014-arm cp39"
python: '3.9'
arch: arm64
- env:
- TOXENV=py39-nocov
- WHEEL_MANYLINUX="1 cp39"
python: '3.9'
arch: amd64
before_install:
- python --version
- uname -a
Expand Down
1 change: 1 addition & 0 deletions AUTHORS.rst
Expand Up @@ -8,3 +8,4 @@ Authors
* Erik M. Bray - http://iguananaut.net
* Ran Benita - https://github.com/bluetech
* "hugovk" - https://github.com/hugovk
* Day Barr - https://github.com/daybarr
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -2,6 +2,8 @@
Changelog
=========

* Added binary wheels for Python 3.9.

1.5.1 (2020-07-22)
------------------

Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -98,6 +98,7 @@ def read(*names, **kwargs):
'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',
'Programming Language :: Python :: Implementation :: PyPy',
# uncomment if you test on these interpreters:
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Expand Up @@ -15,7 +15,7 @@ envlist =
clean,
check,
docs,
{py27,py35,py36,py37,py38,pypy,pypy3}-{cover,nocov},
{py27,py35,py36,py37,py38,py39,pypy,pypy3}-{cover,nocov},
report
ignore_basepython_conflict = true

Expand All @@ -28,6 +28,7 @@ basepython =
py36: {env:TOXPYTHON:python3.6}
py37: {env:TOXPYTHON:python3.7}
py38: {env:TOXPYTHON:python3.8}
py39: {env:TOXPYTHON:python3.9}
{bootstrap,clean,check,report,docs,codecov,coveralls,extension-coveralls}: {env:TOXPYTHON:python3}
setenv =
PYTHONPATH={toxinidir}/tests
Expand Down

0 comments on commit c282866

Please sign in to comment.