Removed Django from install requirements added 1.8 tests

This commit is contained in:
Johannes Hoppe 2015-04-08 17:46:29 +02:00
parent d9d928a336
commit b07ad8939c
2 changed files with 6 additions and 8 deletions

View file

@ -15,13 +15,11 @@ env:
- DJANGO="<1.5,>=1.4"
- DJANGO="<1.7,>=1.6"
- DJANGO="<1.8,>=1.7"
- DJANGO="==1.8rc1"
- DJANGO="<1.9,>=1.8"
matrix:
exclude:
- python: "3.2"
env: DJANGO="<1.5,>=1.4"
- python: "3.2"
env: DJANGO="<1.8,>=1.7"
- python: "3.3"
env: DJANGO="<1.5,>=1.4"
- python: "3.4"
@ -30,8 +28,10 @@ matrix:
env: DJANGO="<1.5,>=1.4"
- python: "2.6"
env: DJANGO="<1.8,>=1.7"
allow_failures:
- env: DJANGO="==1.8rc1"
- python: "3.2"
env: DJANGO="<1.8,>=1.7"
- python: "2.6"
env: DJANGO="<1.9,>=1.8"
install:
- pip install --upgrade pip
- pip install -e .

View file

@ -104,9 +104,7 @@ setup(
"Programming Language :: Python",
"Framework :: Django",
],
install_requires=[
"Django>=1.4",
],
install_requires=[],
zip_safe=False,
cmdclass={'test': PyTest},
)