[py38] Python 3.8 is now official, use it by default

This commit is contained in:
Bastien Vallet 2019-10-24 17:19:33 +02:00 committed by Djailla
parent fa23cab8a2
commit 7d0c8f97f8
3 changed files with 6 additions and 7 deletions

View File

@ -2,7 +2,7 @@ sudo: false
language: python language: python
matrix: matrix:
include: include:
- python: 3.7 - python: 3.8
env: TOXENV=lint env: TOXENV=lint
dist: xenial dist: xenial
sudo: true sudo: true
@ -19,16 +19,14 @@ matrix:
- python: pypy3 - python: pypy3
env: TOXENV=pypy3 env: TOXENV=pypy3
dist: xenial dist: xenial
- python: 3.8-dev - python: 3.8
env: TOXENV=py38-dev env: TOXENV=py38
dist: xenial dist: xenial
sudo: true sudo: true
- python: 3.7 - python: 3.8
env: TOXENV=docs-lint env: TOXENV=docs-lint
dist: xenial dist: xenial
sudo: true sudo: true
allow_failures:
- env: TOXENV=py38-dev
install: pip install tox install: pip install tox
# TODO: https://github.com/tox-dev/tox/issues/149 # TODO: https://github.com/tox-dev/tox/issues/149
script: tox --recreate script: tox --recreate

View File

@ -25,6 +25,7 @@ CLASSIFIERS = [
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy', 'Programming Language :: Python :: Implementation :: PyPy',

View File

@ -1,5 +1,5 @@
[tox] [tox]
envlist = py34, py35, py36, py37, py38-dev, pypy3, lint envlist = py34, py35, py36, py37, py38, pypy3, lint
skipsdist = True skipsdist = True
[testenv] [testenv]