Skip to content

Commit

Permalink
Removed 1.8 dependency for now
Browse files Browse the repository at this point in the history
  • Loading branch information
shiva committed Apr 24, 2015
1 parent 9f179c5 commit c11296d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -9,8 +9,8 @@ env:
- DJANGO='Django>=1.4,<1.5'
- DJANGO='Django>=1.5,<1.6'
- DJANGO='Django>=1.6,<1.7'
- DJANGO='Django>=1.7,<1.8'
- DJANGO='https://github.com/django/django/tarball/stable/1.8.x'
# - DJANGO='Django>=1.7,<1.8'
# - DJANGO='https://github.com/django/django/tarball/stable/1.8.x'

install:
- pip install --use-mirrors $DJANGO
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -124,6 +124,6 @@ def find_package_data(
],
zip_safe=False,
install_requires=["Django>=1.3,<=1.8"],
tests_require=["Django>=1.3,<=1.8", "six"],
tests_require=["Django>=1.3,<=1.7", "six"],

This comment has been minimized.

Copy link
@blueyed

blueyed Jun 16, 2015

Contributor

This is not what you want!
See #57.
It should be <1.8a0 or <=1.7.999 to use 1.7.x.

<=1.7 will install 1.7 (and no point release of it)!

test_suite='runtests.runtests',
)

1 comment on commit c11296d

@blueyed
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, why was this done? (the commit should provide some desc/hint)

Please sign in to comment.