]> git.phdru.name Git - ppu.git/commitdiff
Feat: PyPy
authorOleg Broytman <phd@phdru.name>
Wed, 15 Nov 2017 20:25:47 +0000 (23:25 +0300)
committerOleg Broytman <phd@phdru.name>
Wed, 15 Nov 2017 20:25:47 +0000 (23:25 +0300)
TODO
docs/news.rst
setup.py
tox.ini

diff --git a/TODO b/TODO
index ba0778e5280ae90ec46d50b198ab81f6764e55c1..4553922210adc83198a0ca060b00e8fa0c933014 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,6 +1,3 @@
-PyPy.
-
-
 Add option -s --quiet --silent for cmp.py.
 
 
index 807f4ba83dbeda95fbba596b5103a85ad481dcc2..2489f64ddcb1ed4f3da16351d72d7a565c567af7 100644 (file)
@@ -8,6 +8,8 @@ Version 0.6.0 (2017-10-??)
 
 * Add option -f for rm.py.
 
+* PyPy.
+
 Version 0.5.0 (2017-07-09)
 --------------------------
 
index 98d3d0df15af62cf7642b02e2f2e85528ef6cfcc..2902ebf61e9f6b0a2fa9fc9b96f5a93fba6ce163 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -28,6 +28,8 @@ setup(name='ppu',
           'Intended Audience :: End Users/Desktop',
           'License :: OSI Approved :: GNU General Public License (GPL)',
           'Operating System :: OS Independent',
+          'Programming Language :: Python :: Implementation :: CPython',
+          'Programming Language :: Python :: Implementation :: PyPy',
           'Programming Language :: Python :: 2',
           'Programming Language :: Python :: 2.7',
           'Programming Language :: Python :: 3',
diff --git a/tox.ini b/tox.ini
index b3f3b85458fed588c554554f21348fe8b714d7f4..82c31641c72f4f53882358188f4e7b8e59bc9f41 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
 [tox]
 minversion = 1.8
-envlist = {py27,py33,py34,py35,py36},{py27,py34}-flake8
+envlist = {py27,py33,py34,py35,py36},pypy,{py27,py34}-flake8
 
 # Base test environment settings
 [testenv]
@@ -10,6 +10,7 @@ basepython =
     py34: {env:TOXPYTHON:python3.4}
     py35: {env:TOXPYTHON:python3.5}
     py36: {env:TOXPYTHON:python3.6}
+    pypy: {env:TOXPYTHON:pypy}
 commands =
     {envpython} --version
     {envpython} -c "import struct; print(struct.calcsize('P') * 8)"
@@ -48,6 +49,11 @@ commands =
     {[testenv]commands}
     {[general]commands}
 
+[testenv:pypy]
+commands =
+    {[testenv]commands}
+    {[general]commands}
+
 [testenv:py27-flake8]
 deps =
     flake8