Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PyPy3 support #271

Merged
merged 3 commits into from
Dec 14, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion .travis.yml
Expand Up @@ -4,6 +4,7 @@ python:
- "2.6"
- "2.7"
- "pypy"
- "pypy3.3-5.2-alpha1"
- "3.3"
- "3.4"
- "3.5"
Expand All @@ -17,7 +18,7 @@ addons:
- libcurl4-gnutls-dev
- librtmp-dev
install:
- pip install unittest2 mock pycurl flake8
- pip install unittest2 mock pycurl flake8 tox-travis
- python setup.py clean --all
- python setup.py install
script:
Expand All @@ -26,3 +27,4 @@ script:
matrix:
allow_failures:
- python: pypy
- python: pypy3.3-5.2-alpha1
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py26, py27, pypy, py33, py34, py35
envlist = py26, py27, pypy, pypy3.3-5.2-alpha1, py33, py34, py35

[testenv]
deps =
Expand Down