Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Advertise python 3.8 support and run python 3.8 in CI #203

Merged
merged 2 commits into from Oct 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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
2 changes: 2 additions & 0 deletions setup.cfg
Expand Up @@ -6,6 +6,7 @@ author = Robert T. McGibbon
author-email = rmcgibbo@gmail.com
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
mayeut marked this conversation as resolved.
Show resolved Hide resolved
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 sys.version_info.minor < 8 else '')
PYTHON_IMAGE_ID = 'python:' + '.'.join(PYTHON_MAJ_MIN)
DEVTOOLSET = {
'manylinux1': 'devtoolset-2',
Expand Down