summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2021-06-16 11:22:27 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-06-16 11:22:36 +0800
commit820d3cc9ceda3e5690d627677883b7f9d349b326 (patch)
treeaf22cfab209f22bd825c700b0bc617d602c998c7 /.travis.yml
parent4d86d883714072b6e3bbc56a2127c06e9d6a6582 (diff)
downloadgitpython-820d3cc9ceda3e5690d627677883b7f9d349b326.tar.gz
Revert "Remove support for Python 3.5" - fix CI for now.
This reverts commit 45d1cd59d39227ee6841042eab85116a59a26d22. See #1201 which will hopefully help to get a proper fix soon.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 570beaad..1fbb1ddb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,6 +1,8 @@
# UNUSED, only for reference. If adjustments are needed, please see github actions
language: python
python:
+ - "3.4"
+ - "3.5"
- "3.6"
- "3.7"
- "3.8"
@@ -36,7 +38,7 @@ script:
- ulimit -n
- coverage run --omit="test/*" -m unittest --buffer
- coverage report
- - if [ "$TRAVIS_PYTHON_VERSION" == '3.6' ]; then cd doc && make html; fi
+ - if [ "$TRAVIS_PYTHON_VERSION" == '3.5' ]; then cd doc && make html; fi
- if [ "$TRAVIS_PYTHON_VERSION" == '3.6' ]; then flake8 --ignore=W293,E265,E266,W503,W504,E731; fi
after_success:
- codecov