Skip to content

Commit

Permalink
Advertise python 3.8 support and run python 3.8 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Oct 17, 2019
1 parent 7196286 commit 1cd3f24
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
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
1 change: 1 addition & 0 deletions setup.cfg
Expand Up @@ -16,6 +16,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
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 int(PYTHON_MAJ_MIN[1]) < 8 else '')
PYTHON_IMAGE_ID = 'python:' + '.'.join(PYTHON_MAJ_MIN)
DEVTOOLSET = {
'manylinux1': 'devtoolset-2',
Expand Down

0 comments on commit 1cd3f24

Please sign in to comment.