mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
Trying different version identifiers. Refs #82.
This commit is contained in:
parent
1cc6a1a05e
commit
722971e854
3 changed files with 11 additions and 14 deletions
|
@ -5,15 +5,15 @@ python:
|
|||
- 3.5
|
||||
|
||||
env:
|
||||
- DJANGO=1.8.*
|
||||
- DJANGO=1.9.*
|
||||
- DJANGO=1.10.*
|
||||
- DJANGO: django>=1.8,<1.9
|
||||
- DJANGO: django>=1.9,<1.10
|
||||
- DJANGO: django>=1.10
|
||||
|
||||
before_install:
|
||||
- pip install codecov
|
||||
|
||||
install:
|
||||
- pip install django==$DJANGO
|
||||
- pip install $DJANGO
|
||||
- pip install -e .
|
||||
|
||||
script:
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
# -----------------------------------------------------------------------------
|
||||
|
||||
# Project dependencies
|
||||
django==1.10.*
|
||||
django>=1.10
|
||||
django-mptt
|
||||
pygments
|
||||
requests
|
||||
|
@ -16,10 +16,7 @@ tox
|
|||
docutils
|
||||
sphinx
|
||||
sphinx_rtd_theme
|
||||
mysql-python
|
||||
|
||||
# Deployment specific
|
||||
django-redis==3.8.0
|
||||
gunicorn==19.1.1
|
||||
south==1.0.2
|
||||
|
||||
gunicorn
|
||||
mysql-python
|
||||
|
|
8
tox.ini
8
tox.ini
|
@ -1,7 +1,7 @@
|
|||
[tox]
|
||||
toxworkdir=/tmp/tox/dpaste
|
||||
envlist=
|
||||
py{27,35}-django-{18,19,110}
|
||||
py{27,35}-django-{18,19,latest}
|
||||
|
||||
[testenv]
|
||||
install_command =
|
||||
|
@ -12,6 +12,6 @@ commands=
|
|||
|
||||
deps=
|
||||
# Django versions
|
||||
django-18: django==1.8.*
|
||||
django-19: django==1.9.*
|
||||
django-110: django==1.10.*
|
||||
django-18: django>=1.8,<1.9
|
||||
django-19: django>=1.9,<1.10
|
||||
django-latest: django>=1.10
|
||||
|
|
Loading…
Reference in a new issue