-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't specify Django version in install_requires.'
- Loading branch information
Showing
1 changed file
with
1 addition
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ | |
# allow setup.py to be run from any path | ||
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) | ||
|
||
|
||
def get_version(package): | ||
""" | ||
Return package version as listed in `__version__` in `init.py`. | ||
|
@@ -38,7 +37,6 @@ def get_version(package): | |
shutil.rmtree('django_star_ratings.egg-info') | ||
sys.exit() | ||
|
||
|
||
setup( | ||
name='django-star-ratings', | ||
version=version, | ||
|
@@ -61,7 +59,7 @@ def get_version(package): | |
author_email='[email protected]', | ||
keywords='ratings', | ||
install_requires=[ | ||
'Django >= 1.7, <= 1.8.4', | ||
'django', | ||
'django-model-utils', | ||
'django-braces' | ||
], | ||
|