Skip to content

Commit

Permalink
Merge pull request #203 from mayeut/python-3.8
Browse files Browse the repository at this point in the history
Advertise python 3.8 support and run python 3.8 in CI
  • Loading branch information
takluyver authored Oct 19, 2019
2 parents 8fc14ac + a225fbd commit 20a030f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ matrix:
- python: "3.5"
- python: "3.6"
- python: "3.7"
- python: "3.8"
- python: "3.7"
env: LINTER=1

Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ author = Robert T. McGibbon
author-email = [email protected]
summary = Cross-distribution Linux wheels
description-file = README.rst
python_requires = >=3.5
classifier =
Development Status :: 4 - Beta
Environment :: Console
Expand All @@ -16,6 +17,7 @@ classifier =
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3 :: Only
Topic :: Software Development
Topic :: Software Development :: Build Tools
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_manylinux.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
}
DOCKER_CONTAINER_NAME = 'auditwheel-test-manylinux'
PYTHON_MAJ_MIN = [str(i) for i in sys.version_info[:2]]
PYTHON_ABI = 'cp{0}-cp{0}m'.format(''.join(PYTHON_MAJ_MIN))
PYTHON_ABI = 'cp{0}-cp{0}{1}'.format(''.join(PYTHON_MAJ_MIN), 'm' if sys.version_info.minor < 8 else '')
PYTHON_IMAGE_ID = 'python:' + '.'.join(PYTHON_MAJ_MIN)
DEVTOOLSET = {
'manylinux1': 'devtoolset-2',
Expand Down

0 comments on commit 20a030f

Please sign in to comment.