mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-05-20 04:51:59 +00:00
Plus white-space changes to match typically used YAML syntax (indentation of lists). This commit may close issue #54 if all goes well.
26 lines
533 B
YAML
26 lines
533 B
YAML
language: python
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
env:
|
|
- DJANGO="Django>=1.4,<1.5"
|
|
- DJANGO="Django>=1.5,<1.6"
|
|
- DJANGO="Django>=1.6,<1.7"
|
|
- DJANGO="Django>=1.7,<1.8"
|
|
- DJANGO="Django>=1.8,<1.9"
|
|
matrix:
|
|
exclude:
|
|
- python: "2.6"
|
|
env: DJANGO="Django>=1.7,<1.8"
|
|
- python: "2.6"
|
|
env: DJANGO="Django>=1.8,<1.9"
|
|
- python: "3.3"
|
|
env: DJANGO="Django>=1.4,<1.5"
|
|
- python: "3.4"
|
|
env: DJANGO="Django>=1.4,<1.5"
|
|
install:
|
|
- pip install $DJANGO
|
|
script:
|
|
- python setup.py test
|