Skip to content
Snippets Groups Projects
Commit 5e0d151d authored by Douglas Hall's avatar Douglas Hall
Browse files

Merge pull request #2 from edx/task/douglashall/fix_dependencies

Do not pin dependency versions
parents 07335119 32a320ac
No related branches found
No related tags found
No related merge requests found
...@@ -68,6 +68,14 @@ and committed to the git repo using: ...@@ -68,6 +68,14 @@ and committed to the git repo using:
Changes to style rules should be made to the Sass files, compiled to CSS, Changes to style rules should be made to the Sass files, compiled to CSS,
and committed to the git repository. and committed to the git repository.
Package Requirements
--------------------
setup.py contains a list of package dependencies which are required for this XBlock package.
This list is what is used to resolve dependencies when an upstream project is consuming
this XBlock package. requirements.txt is used to install the same dependencies when running
the tests for this package.
License License
------- -------
......
lxml==3.4.4 lxml
bleach==1.4.2 bleach
oauthlib==1.0.3 oauthlib
mako==1.0.2 mako
git+https://github.com/edx/XBlock.git@xblock-0.4.1#egg=XBlock==0.4.1 git+https://github.com/edx/XBlock.git#egg=XBlock
git+https://github.com/edx/xblock-utils.git@v1.0.0#egg=xblock-utils==v1.0.0 git+https://github.com/edx/xblock-utils.git@v1.0.0#egg=xblock-utils==v1.0.0
-e . -e .
...@@ -28,12 +28,12 @@ setup( ...@@ -28,12 +28,12 @@ setup(
'lti_consumer', 'lti_consumer',
], ],
install_requires=[ install_requires=[
'lxml==3.4.4', 'lxml',
'bleach==1.4.2', 'bleach',
'oauthlib==1.0.3', 'oauthlib',
'mako==1.0.2', 'mako',
'XBlock==0.4.1', 'XBlock',
'xblock-utils==v1.0.0', 'xblock-utils>=v1.0.0',
], ],
dependency_links=[ dependency_links=[
'https://github.com/edx/xblock-utils/tarball/c39bf653e4f27fb3798662ef64cde99f57603f79#egg=xblock-utils', 'https://github.com/edx/xblock-utils/tarball/c39bf653e4f27fb3798662ef64cde99f57603f79#egg=xblock-utils',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment