mirror of
https://github.com/jazzband/django-constance.git
synced 2026-05-28 00:44:03 +00:00
Document all supported versions in PyPI using trove classifiers. Alphabetize classifiers. Add all supported versions to tox.ini for easy testing. Tidy up tox.ini by removing defaults for basepython. Add all supported versions to the Travis CI configuration for CI testing. Use Tox-Travis to help build the test matrix as the different versions of Django do not have complete overlap of Python support. Update Travis configuration to use built in pip caching support. https://docs.travis-ci.com/user/caching/#pip-cache
22 lines
490 B
YAML
22 lines
490 B
YAML
sudo: false
|
|
language: python
|
|
cache: pip
|
|
python:
|
|
- 2.7
|
|
- 3.3
|
|
- 3.4
|
|
- 3.5
|
|
- 3.6
|
|
- pypy
|
|
install: pip install tox-travis
|
|
script: tox
|
|
deploy:
|
|
provider: pypi
|
|
user: jazzband
|
|
distributions: "sdist bdist_wheel"
|
|
password:
|
|
secure: VD+63Tnv0VYNfFQv9f1KZ0k79HSX8veNk4dTy42Hriteci50z5uSQdZMnqqD83xQJa4VF6N7DHkxHnBVOWLCqGQZeYqR/5BuDFNUewcr6O14dk31HvxMsWDaN1KW0Qwtus8ZrztwGhZtZ/92ODA6luHI4mCTzqX0gcG0/aKd75s=
|
|
on:
|
|
tags: true
|
|
repo: jazzband/django-constance
|
|
python: 3.6
|