fix: changed travis.yml and setup.py configuration

This commit is contained in:
mario 2017-10-31 16:34:29 +01:00
parent e4c04528a2
commit be2ac99a34
2 changed files with 6 additions and 6 deletions

View File

@ -3,11 +3,11 @@ python:
- "2.7" - "2.7"
- "3.5" - "3.5"
env: env:
- DJANGO=1.8.18 - DJANGO=1.8.* DRF=3.6.*
- DJANGO=1.10.7 - DJANGO=1.10.* DRF=3.7.*
- DJANGO=1.11.1 - DJANGO=1.11.* DRF=3.7.*
install: install:
- pip install -q Django==$DJANGO - pip install -q Django==$DJANGO djangorestframework==$DRF
- pip install coveralls - pip install coveralls
- pip install -r rest_auth/tests/requirements.pip - pip install -r rest_auth/tests/requirements.pip
script: script:

View File

@ -28,8 +28,8 @@ setup(
keywords='django rest auth registration rest-framework django-registration api', keywords='django rest auth registration rest-framework django-registration api',
zip_safe=False, zip_safe=False,
install_requires=[ install_requires=[
'Django>=1.8.0', 'Django==1.8.0',
'djangorestframework>=3.1.0', 'djangorestframework==3.1.3',
'six>=1.9.0', 'six>=1.9.0',
], ],
extras_require={ extras_require={