Add pypy3 to list of tested environments (#2105)

This commit is contained in:
johnthagen 2019-09-07 21:55:26 -04:00 committed by Berker Peksag
parent 799df751c7
commit f35ae584b4
3 changed files with 6 additions and 1 deletions

View File

@ -16,6 +16,9 @@ matrix:
env: TOXENV=py37
dist: xenial
sudo: true
- python: pypy3
env: TOXENV=pypy3
dist: xenial
- python: 3.8-dev
env: TOXENV=py38-dev
dist: xenial

View File

@ -26,6 +26,8 @@ CLASSIFIERS = [
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',

View File

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