diff options
-rw-r--r-- | .gitignore | 6 | ||||
-rw-r--r-- | .travis.yml | 6 | ||||
-rw-r--r-- | MANIFEST.in | 5 | ||||
-rw-r--r-- | tox.ini | 4 |
4 files changed, 6 insertions, 15 deletions
@@ -6,12 +6,10 @@ *.orig *.egg-info *.sw[opq] - /.Python /bin /include /lib /man -
-.tox/
-.cache/
+.tox/ +.cache/ diff --git a/.travis.yml b/.travis.yml index 3f0c218..83a086e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,9 @@ language: python
python:
- - "3.6"
+ - "3.8"
+ - "3.7"
- "3.5"
- - "3.4"
- - "3.3"
- "2.7"
- - "2.6"
install:
- pip install -U tox-travis
script:
diff --git a/MANIFEST.in b/MANIFEST.in index 452a408..2a2dc6c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,11 +1,8 @@ -# any kind of "*" pulls in __init__.pyc files, -# so all extensions are explicit. - recursive-include doc *.html *.css *.txt *.js *.png *.py Makefile *.rst *.mako recursive-include examples *.py *.xml *.mako *.myt *.kid *.tmpl recursive-include test *.py *.html *.mako -include README* AUTHORS LICENSE distribute_setup.py ez_setup.py CHANGES* +include README* AUTHORS LICENSE CHANGES* tox.ini prune doc/build/output @@ -1,7 +1,5 @@ -# content of: tox.ini , put in same dir as setup.py [tox] -minversion=1.8.dev1 -envlist = py{26,27,34,35,36,37,38} +envlist = py{27,35,36,37,38} [testenv] cov_args=--cov=mako --cov-report term --cov-report xml |