.travis.yml 328 B

123456789101112131415161718
  1. language: python
  2. python:
  3. - 3.6
  4. - 3.7
  5. cache:
  6. pip: true
  7. install:
  8. - python -m pip install pre-commit setuptools wheel
  9. - python -m pip install -r requirements.txt
  10. - python setup.py install
  11. before_script:
  12. - pre-commit run --all-files
  13. script:
  14. - mkdir html
  15. - sphinx-multiversion docs html
  16. - python setup.py build sdist bdist_wheel