From 7bfa2ac5d45d274ac7e4a50415cf02eee140cdd3 Mon Sep 17 00:00:00 2001 From: Jason Carver Date: Tue, 6 Feb 2018 15:52:41 -0800 Subject: [PATCH] add pypy3 as a supported environment, by default --- .travis.yml | 6 ++++++ setup.py | 1 + tox.ini | 3 ++- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 72be81d..42b63c9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,6 +18,12 @@ matrix: # core - python: "3.6" env: TOX_POSARGS="-e py36-core" + # + # pypy3 testing + # + # core + - python: "pypy3" + env: TOX_POSARGS="-e pypy3-core" cache: - pip: true install: diff --git a/setup.py b/setup.py index a89f4ac..a59d9ee 100644 --- a/setup.py +++ b/setup.py @@ -62,5 +62,6 @@ setup( 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: Implementation :: PyPy3', ], ) diff --git a/tox.ini b/tox.ini index 0277275..9b1727e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist= - py{35,36}-core + py{35,36,py3}-core lint [isort] @@ -25,6 +25,7 @@ commands= basepython = py35: python3.5 py36: python3.6 + pypy3: pypy3 extras=test [testenv:lint]