Skip to content

Commit f41cb34

Browse files
authoredNov 4, 2017
Drop pypy support (#249)
1 parent f3c7591 commit f41cb34

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed
 

‎.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ python:
66
env:
77
- TOXENV="py27"
88
- TOXENV="py34"
9-
- TOXENV="pypy"
109
- TOXENV="coverage"
1110

1211
install:

‎CONTRIBUTING.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ How to Add New Policy
104104

105105
::
106106

107-
$ pyenv local 2.7.8 3.4.1 pypy-2.4.0
107+
$ pyenv local 2.7.8 3.4.1
108108
$ tox
109109

110110
If you want to test by py.test, you should add ``vint/bin`` to

‎setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ def get_version():
6363
'Programming Language :: Python :: 2.7',
6464
'Programming Language :: Python :: 3.4',
6565
'Programming Language :: Python :: Implementation :: CPython',
66-
'Programming Language :: Python :: Implementation :: PyPy',
6766
],
6867
entry_points={
6968
'console_scripts': [

‎tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py34, pypy, coverage
2+
envlist = py27, py34, coverage
33

44
[testenv]
55
setenv =

0 commit comments

Comments
 (0)
Please sign in to comment.