diff options
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | sites/www/changelog.rst | 3 | ||||
-rw-r--r-- | tox-requirements.txt | 2 | ||||
-rw-r--r-- | tox.ini | 6 |
4 files changed, 4 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index 3b7b2b42..af32ba7e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,7 @@ python: - "3.3" - "3.4" - "3.5" + - "pypy-5.4.1" install: # Self-install for setup.py-driven deps - pip install -e . diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst index 7fb3542b..460637f9 100644 --- a/sites/www/changelog.rst +++ b/sites/www/changelog.rst @@ -2,6 +2,9 @@ Changelog ========= +* :support:`866 backported` (also :issue:`838`) Remove an old test-related file + we don't support, and add PyPy to Travis-CI config. Thanks to Pierce Lopez + for the final patch and Pedro Rodrigues for an earlier edition. * :release:`1.18.1 <2016-12-12>` * :bug:`859` (via :issue:`860`) A tweak to the original patch implementing :issue:`398` was not fully applied, causing calls to diff --git a/tox-requirements.txt b/tox-requirements.txt deleted file mode 100644 index 26224ce6..00000000 --- a/tox-requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -# Not sure why tox can't just read setup.py? -pycrypto diff --git a/tox.ini b/tox.ini deleted file mode 100644 index 7d4fcf8a..00000000 --- a/tox.ini +++ /dev/null @@ -1,6 +0,0 @@ -[tox] -envlist = py26,py27,py32,py33,py34 - -[testenv] -commands = pip install -q -r tox-requirements.txt - python test.py |