diff --git a/.travis.yml b/.travis.yml index b172c551..04f51ce6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ matrix: - python: "3.5" - python: "3.6" - python: "3.7" + - python: "3.8" - python: "3.7" env: LINTER=1 diff --git a/setup.cfg b/setup.cfg index 2f455f1e..d5f2e68a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 @@ -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 diff --git a/tests/integration/test_manylinux.py b/tests/integration/test_manylinux.py index 7b6a6b0c..4096ae5d 100644 --- a/tests/integration/test_manylinux.py +++ b/tests/integration/test_manylinux.py @@ -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',