.travis.yml 717 B

12345678910111213141516171819202122232425262728293031323334
  1. # for container-y goodness:
  2. sudo: false
  3. language: python
  4. python:
  5. - "3.6"
  6. - "3.5"
  7. - "3.4"
  8. - "3.3"
  9. - "2.7"
  10. # command to install dependencies
  11. install:
  12. - "pip install -U pip setuptools"
  13. - "pip install -Ur requirements.txt"
  14. # command to run tests, e.g. python setup.py test
  15. script: nosetests --with-cov --cov=xlwt
  16. after_success:
  17. - coveralls
  18. deploy:
  19. provider: pypi
  20. user: chrisw
  21. password:
  22. secure: HZ9DRsLpeNMBZc3Sjj2X/KF/fJxaDjINqbeUzJ7FnqcJ5A5ECDHZ/2Bxx/crdpfXwqHDPEcZvatu+LhtpBFu+HCUFAc00V0qvmq34RZDes9WNmnh5Kx97kXxdN0scoM1V7JXeDffhEUZJkL6EQJfJqUWvl9nq4SnC5wOlJBR3QE=
  23. on:
  24. tags: true
  25. repo: python-excel/xlwt
  26. python: "3.5"
  27. skip_cleanup: true
  28. distributions: "sdist bdist_wheel"