.travis.yml 575 B

12345678910111213141516171819202122
  1. language: python
  2. python:
  3. - 2.7
  4. - 3.6
  5. - 3.7
  6. - 3.8
  7. cache: pip
  8. dist: xenial
  9. install: travis_retry pip install tox-travis
  10. script: tox
  11. after_success: bash <(curl -s https://codecov.io/bash)
  12. deploy:
  13. provider: pypi
  14. user: jazzband
  15. server: https://jazzband.co/projects/tablib/upload
  16. distributions: sdist bdist_wheel
  17. password:
  18. secure: svV4fYtodwW+iTyFOm5ISEfhVwcA+6vTskD3x6peznc40TdMV9Ek8nT3Q/NB4lCbXoUw2qR4H6uhLCjesnv/VvVk/qbitCyD8ySlgwOV5n7NzJs8lC8EYaHSjGQjatTwJAokfGVYkPawkI7HXDqtDggLUQBK+Ag8HDW+XBSbQIU=
  19. on:
  20. tags: true
  21. repo: jazzband/tablib
  22. python: 3.7