Skip to content

Commit

Permalink
3.0.0 fix requirements to allow for 2, which we test for (#77)
Browse files Browse the repository at this point in the history
* Update setup.py

* Update setup.py

* Update CHANGES.md
  • Loading branch information
JBKahn authored Apr 26, 2018
1 parent 2634883 commit 86d9f56
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
=========

3.0.0 (April 26th 2018)
------------------

### Official Support for Django 2.0.0 in setup.py

- Support for Django > 2.0.0 and < 3.0.0 in setup.py


2.1.0 (Jan 5th 2018)
------------------

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

version = '2.1.0'
version = '3.0.0'


def get_requirements(file_path):
Expand All @@ -18,7 +18,7 @@ def get_requirements(file_path):
url='https://github.com/JBKahn/django-sharding',
packages=find_packages(),
include_package_data=True,
install_requires=get_requirements('requirements/common.txt') + ["django>=1.8,<2.0.1"],
install_requires=get_requirements('requirements/common.txt') + ["django>=1.8,<3.0.0"],
tests_require=get_requirements('requirements/development.txt'),
license="BSD",
zip_safe=False,
Expand Down

0 comments on commit 86d9f56

Please sign in to comment.