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
|
- 3.5
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- DJANGO=1.8.*
|
- DJANGO: django>=1.8,<1.9
|
||||||
- DJANGO=1.9.*
|
- DJANGO: django>=1.9,<1.10
|
||||||
- DJANGO=1.10.*
|
- DJANGO: django>=1.10
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- pip install codecov
|
- pip install codecov
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- pip install django==$DJANGO
|
- pip install $DJANGO
|
||||||
- pip install -e .
|
- pip install -e .
|
||||||
|
|
||||||
script:
|
script:
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
|
|
||||||
# Project dependencies
|
# Project dependencies
|
||||||
django==1.10.*
|
django>=1.10
|
||||||
django-mptt
|
django-mptt
|
||||||
pygments
|
pygments
|
||||||
requests
|
requests
|
||||||
|
@ -16,10 +16,7 @@ tox
|
||||||
docutils
|
docutils
|
||||||
sphinx
|
sphinx
|
||||||
sphinx_rtd_theme
|
sphinx_rtd_theme
|
||||||
mysql-python
|
|
||||||
|
|
||||||
# Deployment specific
|
# Deployment specific
|
||||||
django-redis==3.8.0
|
gunicorn
|
||||||
gunicorn==19.1.1
|
mysql-python
|
||||||
south==1.0.2
|
|
||||||
|
|
||||||
|
|
8
tox.ini
8
tox.ini
|
@ -1,7 +1,7 @@
|
||||||
[tox]
|
[tox]
|
||||||
toxworkdir=/tmp/tox/dpaste
|
toxworkdir=/tmp/tox/dpaste
|
||||||
envlist=
|
envlist=
|
||||||
py{27,35}-django-{18,19,110}
|
py{27,35}-django-{18,19,latest}
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
install_command =
|
install_command =
|
||||||
|
@ -12,6 +12,6 @@ commands=
|
||||||
|
|
||||||
deps=
|
deps=
|
||||||
# Django versions
|
# Django versions
|
||||||
django-18: django==1.8.*
|
django-18: django>=1.8,<1.9
|
||||||
django-19: django==1.9.*
|
django-19: django>=1.9,<1.10
|
||||||
django-110: django==1.10.*
|
django-latest: django>=1.10
|
||||||
|
|
Loading…
Reference in a new issue