-
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.
Merge pull request #14 from edx/jmbowman/PLAT-2063
PLAT-2063 Fix dependency management
- Loading branch information
Showing
29 changed files
with
302 additions
and
88 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 |
---|---|---|
|
@@ -26,6 +26,7 @@ pip-log.txt | |
.cache/ | ||
.coverage | ||
.coverage.* | ||
.pytest_cache/ | ||
.tox | ||
coverage.xml | ||
htmlcov/ | ||
|
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ Simon Chen <[email protected]> | |
Gregory Martin <[email protected]> | ||
Alessandro Roux <[email protected]> | ||
Sofiya Semenova <[email protected]> | ||
Jeremy Bowman <[email protected]> |
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Core requirements for using this application | ||
|
||
Django>=1.8,<2.0 # Web application framework | ||
django-model-utils # Provides TimeStampedModel abstract base class | ||
djangorestframework>=3.2.0,<3.7.0 # REST API framework | ||
edx-opaque-keys[django] # Create and introspect course and xblock identities | ||
pytz # Time zone support | ||
XBlock # Courseware component architecture |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Additional requirements for development of this application | ||
|
||
-r base.in # Dependencies for edx-completion itself | ||
-r quality.in # Dependencies for code quality checks | ||
-r test.in # Dependencies for test case execution | ||
|
||
diff-cover # Changeset diff test coverage | ||
edx-lint # For updating pylintrc | ||
edx-i18n-tools # For i18n_tool dummy | ||
pip-tools # Requirements file management | ||
tox # virtualenv management for tests | ||
tox-battery # Makes tox aware of requirements file changes |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Requirements for documentation validation | ||
|
||
-r base.in # Core requirements to allow imports during API doc generation | ||
-r test.in # Test requirements to allow imports during API doc generation | ||
|
||
doc8 # reStructuredText style checker | ||
edx_sphinx_theme # edX theme for Sphinx output | ||
readme_renderer # Validates README.rst for usage on PyPI | ||
Sphinx # Documentation builder |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# If there are any Python packages you want to keep in your virtualenv beyond | ||
# those listed in the official requirements files, create a "private.in" file | ||
# and list them there. Generate the corresponding "private.txt" file pinning | ||
# all of their indirect dependencies to specific versions as follows: | ||
|
||
# pip-compile private.in | ||
|
||
# This allows you to use "pip-sync" without removing these packages: | ||
|
||
# pip-sync requirements/*.txt | ||
|
||
# "private.in" and "private.txt" aren't checked into git to avoid merge | ||
# conflicts, and the presence of this file allows "private.*" to be | ||
# included in scripted pip-sync usage without requiring that those files be | ||
# created first. |
Oops, something went wrong.