diff options
| author | Bert Wesarg <bert.wesarg@googlemail.com> | 2021-03-11 16:35:24 +0100 |
|---|---|---|
| committer | Bert Wesarg <bert.wesarg@googlemail.com> | 2021-03-13 20:34:07 +0100 |
| commit | 45d1cd59d39227ee6841042eab85116a59a26d22 (patch) | |
| tree | 843ffd92ec49921a92fc8f44eeced3c8afcf03b2 /.travis.yml | |
| parent | 690722a611a25a1afcdb0163d3cfd0a8c89d1d04 (diff) | |
| download | gitpython-45d1cd59d39227ee6841042eab85116a59a26d22.tar.gz | |
Remove support for Python 3.5
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 1fbb1ddb..570beaad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,6 @@ # 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" @@ -38,7 +36,7 @@ script: - ulimit -n - coverage run --omit="test/*" -m unittest --buffer - coverage report - - if [ "$TRAVIS_PYTHON_VERSION" == '3.5' ]; then cd doc && make html; fi + - if [ "$TRAVIS_PYTHON_VERSION" == '3.6' ]; 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 |
