-
Notifications
You must be signed in to change notification settings - Fork 583
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix documentation wrt tests and supported versions
* use stricter Django verison in setup.py * fix tox arguments passing * update docs
- Loading branch information
Mykhailo Kolesnyk
committed
Jan 15, 2016
1 parent
871c4c4
commit 52586c7
Showing
4 changed files
with
12 additions
and
30 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
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
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ def read(fname): | |
author_email='[email protected]', | ||
packages=find_packages(), | ||
install_requires=( | ||
'Django>=1.5,<1.9', | ||
'Django>=1.5,<1.8.99', # Django is known to use rc versions | ||
'easy-thumbnails>=1.0,<2.4', | ||
'django-mptt>=0.6,<0.9', # the exact version depends on Django | ||
'django_polymorphic>=0.7,<0.9', | ||
|
@@ -52,9 +52,4 @@ def read(fname): | |
'Programming Language :: Python :: 3.3', | ||
'Programming Language :: Python :: 3.4', | ||
], | ||
test_suite='cms_helper.run', | ||
tests_require=( | ||
'argparse', # needed on python 2.6 | ||
'south', | ||
), | ||
) |
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