File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ 3.0.0 (April 26th 2018)
5
+ ------------------
6
+
7
+ ### Official Support for Django 2.0.0 in setup.py
8
+
9
+ - Support for Django > 2.0.0 and < 3.0.0 in setup.py
10
+
11
+
4
12
2.1.0 (Jan 5th 2018)
5
13
------------------
6
14
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
- version = '2.1 .0'
3
+ version = '3.0 .0'
4
4
5
5
6
6
def get_requirements (file_path ):
@@ -18,7 +18,7 @@ def get_requirements(file_path):
18
18
url = 'https://github.com/JBKahn/django-sharding' ,
19
19
packages = find_packages (),
20
20
include_package_data = True ,
21
- install_requires = get_requirements ('requirements/common.txt' ) + ["django>=1.8,<2 .0.1 " ],
21
+ install_requires = get_requirements ('requirements/common.txt' ) + ["django>=1.8,<3 .0.0 " ],
22
22
tests_require = get_requirements ('requirements/development.txt' ),
23
23
license = "BSD" ,
24
24
zip_safe = False ,
You can’t perform that action at this time.
0 commit comments