Skip to content

Commit

Permalink
Add PyPy support
Browse files Browse the repository at this point in the history
Because it was easy :)
  • Loading branch information
mgedmin committed Nov 27, 2014
1 parent d8a7f63 commit e5ecc13
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ env:
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=pypy
install:
- travis_retry pip install tox
script:
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ def read(*rnames):
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
Expand Down
2 changes: 1 addition & 1 deletion src/z3c/table/batch.txt
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ As you can see the spacer get changed now:

>>> requestBatchingTable.update()
>>> requestBatchingTable.batchProvider
<XBatchProvider object at ...>
<...XBatchProvider object at ...>
>>> print(requestBatchingTable.renderBatch())
<a href="...html?table-batchSize=5&table-batchStart=0&table-sortOn=table-number-1" class="first">1</a>
xxx
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py33,py34
envlist = py26,py27,py33,py34,pypy

[testenv]
commands = python setup.py test -q
Expand Down

0 comments on commit e5ecc13

Please sign in to comment.