]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Add testing and document support for Python 3.7 & pypy3 932/head
authorJon Dufresne <jon.dufresne@gmail.com>
Sat, 8 Dec 2018 18:04:08 +0000 (10:04 -0800)
committerJon Dufresne <jon.dufresne@gmail.com>
Sat, 8 Dec 2018 18:07:56 +0000 (10:07 -0800)
.travis.yml
setup.py
tox.ini

index ea2ec2187925ca93a4436febf4b137ce8d3f4169..34e455a69371de00b9a31e85bb4de41a8805a31d 100644 (file)
@@ -1,12 +1,15 @@
+dist: xenial
 sudo: false
 language: python
 
 python:
+  - 3.7
   - 3.6
   - 3.5
   - 3.4
   - 2.7
-  - pypy
+  - pypy3.5-6.0
+  - pypy2.7-6.0
 
 env:
   - TOXENV=py,codecov
index cc001335d316aa3e49ccce23b5ba35e148bb311c..52306c0e12a691642571405a66362aaa16790e56 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -63,6 +63,7 @@ setup(
         'Programming Language :: Python :: 3.4',
         'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
+        'Programming Language :: Python :: 3.7',
         'Programming Language :: Python :: Implementation :: CPython',
         'Programming Language :: Python :: Implementation :: PyPy',
         'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
diff --git a/tox.ini b/tox.ini
index 6e68b0e8127e0ceabe354b26283251bd7052e701..2ccac468bf1af68ec27988c169c3b981d5c8ba21 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
 [tox]
 envlist =
-    py{36,35,34,27,py}
+    py{37,36,35,34,27,py3,py}
     docs-html
     coverage-report