summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatus Valo <matusvalo@users.noreply.github.com>2019-01-14 14:01:42 +0100
committerAsif Saif Uddin <auvipy@gmail.com>2019-01-14 19:01:42 +0600
commit0f7ffd26a0e2b3e9a75aa885c2278894cb4710c6 (patch)
treea868d729c37281fc07016d58ce081c085b06d5ad
parentcf8402b5ff0972f350dc8f0f3f855073fddb842d (diff)
downloadpy-amqp-0f7ffd26a0e2b3e9a75aa885c2278894cb4710c6.tar.gz
Bump PyPy to 6.0. Add PyPy3 to the build process. (#238)
* Bump PyPy to 6.0. Add PyPy3 to the build process. * Add xenial dist to pypy builds in .travis.yml
-rw-r--r--.travis.yml6
-rw-r--r--tox.ini3
2 files changed, 7 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index c353945..851a7bc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,8 +15,12 @@ matrix:
include:
- python: 2.7
env: TOXENV=2.7
- - python: pypy
+ - python: pypy2.7-6.0
env: TOXENV=pypy
+ dist: xenial
+ - python: pypy3.5-6.0
+ env: TOXENV=pypy3
+ dist: xenial
- python: 3.4
env: TOXENV=3.4
- python: 3.5
diff --git a/tox.ini b/tox.ini
index bde403f..9334d1e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,6 +2,7 @@
envlist =
2.7
pypy
+ pypy3
3.4
3.5
3.6
@@ -25,7 +26,7 @@ commands = py.test -xv --cov=amqp --cov-report=xml --no-cov-on-fail
basepython =
2.7,flakeplus,flake8,apicheck,linkcheck,pydocstyle: python2.7
- pypy: pypy
+ pypy,pypy3: pypy
3.4: python3.4
3.5: python3.5
3.6: python3.6