diff --git a/.travis.yml b/.travis.yml index 9cc253e..53516f9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 . diff --git a/setup.py b/setup.py index 2eb0c48..62207a7 100755 --- a/setup.py +++ b/setup.py @@ -104,9 +104,7 @@ setup( "Programming Language :: Python", "Framework :: Django", ], - install_requires=[ - "Django>=1.4", - ], + install_requires=[], zip_safe=False, cmdclass={'test': PyTest}, )