From 4bd0abe0e25de5e31cdcdda36e2a264055173e5d Mon Sep 17 00:00:00 2001 From: Sven Kreiss Date: Tue, 16 Jun 2015 00:15:21 -0400 Subject: [PATCH] enable testing with pypy and pypy3 --- .travis.yml | 2 ++ setup.py | 1 + 2 files changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 5eed829df..05a519ebe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,4 +3,6 @@ python: - "2.7" - "3.3" - "3.4" + - "pypy" + - "pypy3" script: "travis_retry python setup.py nosetests" diff --git a/setup.py b/setup.py index 338fb1ae8..8743e4373 100644 --- a/setup.py +++ b/setup.py @@ -51,5 +51,6 @@ 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: Implementation :: PyPy', ] )