Skip to content

Commit

Permalink
change django install_requires version (#101)
Browse files Browse the repository at this point in the history
Fix the django install)requires version in setup.py so that it allows versions of django 1.11.x
  • Loading branch information
kencochrane committed Aug 31, 2017
1 parent 7c6a7d2 commit bcfe46c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def get_package_data(package):
include_package_data=True,
packages=get_packages('defender'),
package_data=get_package_data('defender'),
install_requires=['Django>=1.8,<=1.11', 'redis>=2.10.3,<3.0',
install_requires=['Django>=1.8,<1.12', 'redis>=2.10.3,<3.0',
'hiredis>=0.2.0,<1.0', 'mockredispy>=2.9.0.11,<3.0'],
tests_require=['mock', 'mockredispy', 'coverage', 'celery', 'django-redis-cache'],
)

5 comments on commit bcfe46c

@dmartin35
Copy link

Choose a reason for hiding this comment

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

Hello,

is this planned to release soon a bug fix version 0.5.2 that integrates this fix ?
if not, do you have any idea on next release date ?

thanks

@kencochrane
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

A new release will probably be next week. I’m on vacation this week with no computer (only have my phone) when I get back i’ll Package up what we have ready and make a release.

@dmartin35
Copy link

Choose a reason for hiding this comment

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

Cool ! thanks

@kencochrane
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

@dmartin35 sorry for the delay this is now on pypi

@dmartin35
Copy link

Choose a reason for hiding this comment

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

@kencochrane no worries, thanks again, we'll then use it in production. Great app !!

Please sign in to comment.