diff options
| author | Val Neekman <val@neekware.com> | 2021-04-30 15:33:34 -0400 |
|---|---|---|
| committer | Val Neekman <val@neekware.com> | 2021-04-30 15:33:34 -0400 |
| commit | 319559cb43f239ac0d3bc7b975a78059bf4a1086 (patch) | |
| tree | 8b8b97b04aac4e65e2cf0e86afa95ea301f60023 /.travis.yml | |
| parent | 3cc1069d37431efd366a0894067aa4c3293dca3e (diff) | |
| download | python-slugify-5.0.0.tar.gz | |
Add support for 3.9, drop support for 2.7,3.55.0.0support3.9
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index 3c917db..2f8b3ce 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,28 +2,21 @@ language: python dist: xenial python: - - "2.7" - - "3.5" - "3.6" - "3.7" - "3.8" - "3.9" - - "pypy" - "pypy3" install: - pip install pip -U - pip install -e . - pip install pycodestyle - # Avoid cryptography compilation problems with pypy and 2.7 - - pip install coveralls 'cryptography<=3.0;python_version=="2.7"' - - pip install https://github.com/un33k/pyflakes/tarball/master + - pip install coveralls before_script: - "bash format.sh" - - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pyflakes -x W slugify; fi script: coverage run --source=slugify test.py -after_success: - coveralls +after_success: coveralls |
