Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit 0b713ef

Browse files
committed
Add pypy support to tooling and documentation
1 parent 48776dd commit 0b713ef

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ language: python
22
python:
33
- "2.7"
44
- "3.3"
5+
- pypy
56

67
install:
78
- "pip install ."

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Simple. ``hyper`` is written in 100% pure Python, which means no C extensions.
2727
It is also 100% self-contained: there are no external dependencies beyond the
2828
Python standard library.
2929

30-
``hyper`` supports Python 2.7, Python 3.3 and onward.
30+
``hyper`` supports Python 2.7 and 3.3+ on CPython and PyPy.
3131

3232
Caveat Emptor!
3333
--------------

docs/source/quickstart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Installation Requirements
3232
~~~~~~~~~~~~~~~~~~~~~~~~~
3333

3434
There are no specific requirements for using `hyper`, beyond the fact that it
35-
supports Python versions 2.7, 3.3 and onward.
35+
supports Python versions 2.7 and 3.3+ on CPython and PyPy.
3636

3737
Making Your First Request
3838
-------------------------

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,12 @@
4545
'Intended Audience :: Developers',
4646
'License :: OSI Approved :: MIT License',
4747
'Programming Language :: Python',
48+
'Programming Language :: Python :: 2',
4849
'Programming Language :: Python :: 2.7',
4950
'Programming Language :: Python :: 3',
5051
'Programming Language :: Python :: 3.3',
5152
'Programming Language :: Python :: 3.4',
53+
'Programming Language :: Python :: Implementation :: CPython',
54+
'Programming Language :: Python :: Implementation :: PyPy',
5255
]
5356
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py33, py34
2+
envlist = py27, py33, py34, pypy
33

44
[testenv]
55
deps= -r{toxinidir}/test_requirements.txt

0 commit comments

Comments
 (0)