summaryrefslogtreecommitdiff
path: root/.travis.yml
Commit message (Collapse)AuthorAgeFilesLines
* add newer python versions, remove 3.5Jeff Rouse2023-01-041-1/+2
|
* test on Python 3.9Sergey Fedoseev2020-11-111-0/+1
|
* Replace use of deprecated 'setup.py test'Jon Dufresne2020-02-251-1/+1
| | | | | | Since setuptools v41.5.0 (27 Oct 2019), the 'test' command is formally deprecated and should not be used. Now use unittest as the test entry point.
* Test on latest PyPyHugo2019-12-071-2/+2
|
* Drop support for EOL Python 3.4Hugo2019-12-071-1/+0
|
* Add Python 3.8 to the test matrixJon Dufresne2019-11-111-0/+1
|
* Use 'dist: xenial' in Travis to simplify configurationJon Dufresne2019-01-241-7/+4
| | | | | | | | | | Allows using Python version 3.7 without sudo declarations. Travis officially added support for Xenial on 2018-11-08. https://blog.travis-ci.com/2018-11-08-xenial-release As pypy3 is tested on Travis, add it to tox.ini as well.
* Drop support for EOL PythonsJon Dufresne2018-09-171-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Python 2.6, 3.2, and 3.3 are end of life. They are no longer receiving bug fixes, including for security issues. Python 2.6 went EOL on 2013-10-29, Python 3.2 on 2016-02-20, and Python 3.3 on 2017-09-29. For additional details on support Python versions, see: https://devguide.python.org/#status-of-python-branches https://devguide.python.org/devcycle/#end-of-life-branches Removing support for EOL Pythons will reduce testing and maintenance resources. Using pypinfo, here are the PyPI download statistics for the last 30 days, showing low numbers for EOL Pythons. | python_version | percent | download_count | | -------------- | ------: | -------------: | | 2.7 | 61.50% | 785,047 | | 3.6 | 24.17% | 308,576 | | 3.5 | 8.09% | 103,320 | | 3.7 | 3.23% | 41,242 | | 3.4 | 2.81% | 35,877 | | 2.6 | 0.13% | 1,622 | | 3.3 | 0.06% | 711 | | 3.8 | 0.01% | 174 | | None | 0.00% | 19 | | 3.2 | 0.00% | 7 |
* Add testing and document support for Python 3.7Jon Dufresne2018-09-161-0/+7
| | | | | | Python 3.7 was released on June 27, 2018. https://docs.python.org/3/whatsnew/3.7.html
* Update .travis.ymlJeff Rouse2017-02-231-0/+1
|
* Gee, could use a Travis build on 3.5 as well...Jeff Rouse2017-02-011-0/+1
|
* Add py34Thomas Grainger2014-08-171-0/+1
|
* disable 2.5 testing on travis for nowSridhar Ratnakumar2014-03-251-1/+0
| | | | | because it is failing, https://travis-ci.org/ActiveState/appdirs/jobs/21499431
* Add support for Travis-CIMatěj Cepl2013-03-191-0/+9
Trying maximum test coverage and most simple setup. Fixes #21 Signed-off-by: Matěj Cepl <mcepl@redhat.com>