-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Problems from alias failing tests (#243)
* chore: Add dependency links that install from source * chore: Move alias to install version with django-cms 4.0 support * chore: Drop python 3.7 & fix tox
- Loading branch information
Showing
3 changed files
with
15 additions
and
9 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 |
---|---|---|
|
@@ -9,6 +9,10 @@ | |
"django-sekizai>=0.7", | ||
"django-admin-sortable2>=0.6.4", | ||
] | ||
DEPENDENCY_LINKS = [ | ||
"https://github.com/django-cms/django-cms/tarball/release/4.0.1.x#egg=django-cms", | ||
"https://github.com/django-cms/djangocms-versioning/tarball/1.2.2#egg=djangocms-versioning", | ||
] | ||
|
||
setup( | ||
name="djangocms-moderation", | ||
|
@@ -25,6 +29,7 @@ | |
"Topic :: Software Development", | ||
], | ||
install_requires=INSTALL_REQUIREMENTS, | ||
dependency_links=DEPENDENCY_LINKS, | ||
author="Divio AG", | ||
author_email="[email protected]", | ||
maintainer='Django CMS Association and contributors', | ||
|
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