From 0f97f1cea4dc6f6e35375b40ba58d1bc23d6e6c0 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 31 May 2019 14:37:29 -0400 Subject: - modernize tox, travis versions - fix MANIFEST to remove old names, add tox.ini - reformat .gitignore Change-Id: I450672f92ebfb43a023df502de795f24ad809884 --- .gitignore | 6 ++---- .travis.yml | 6 ++---- MANIFEST.in | 5 +---- tox.ini | 4 +--- 4 files changed, 6 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index c6d828e..1485be1 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/tox.ini b/tox.ini index 9be38dd..8611507 100644 --- a/tox.ini +++ b/tox.ini @@ -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 -- cgit v1.2.3