Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lti-xblock-consumer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenJupyter
lti-xblock-consumer
Commits
5e0d151d
Commit
5e0d151d
authored
9 years ago
by
Douglas Hall
Browse files
Options
Downloads
Plain Diff
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
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.rst
+8
-0
8 additions, 0 deletions
README.rst
requirements.txt
+5
-5
5 additions, 5 deletions
requirements.txt
setup.py
+6
-6
6 additions, 6 deletions
setup.py
with
19 additions
and
11 deletions
README.rst
+
8
−
0
View file @
5e0d151d
...
...
@@ -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,
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
-------
...
...
This diff is collapsed.
Click to expand it.
requirements.txt
+
5
−
5
View file @
5e0d151d
lxml
==3.4.4
bleach
==1.4.2
oauthlib
==1.0.3
mako
==1.0.2
git+https://github.com/edx/XBlock.git
@xblock-0.4.1
#egg=XBlock
==0.4.1
lxml
bleach
oauthlib
mako
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
-e .
This diff is collapsed.
Click to expand it.
setup.py
+
6
−
6
View file @
5e0d151d
...
...
@@ -28,12 +28,12 @@ setup(
'
lti_consumer
'
,
],
install_requires
=
[
'
lxml
==3.4.4
'
,
'
bleach
==1.4.2
'
,
'
oauthlib
==1.0.3
'
,
'
mako
==1.0.2
'
,
'
XBlock
==0.4.1
'
,
'
xblock-utils
=
=v1.0.0
'
,
'
lxml
'
,
'
bleach
'
,
'
oauthlib
'
,
'
mako
'
,
'
XBlock
'
,
'
xblock-utils
>
=v1.0.0
'
,
],
dependency_links
=
[
'
https://github.com/edx/xblock-utils/tarball/c39bf653e4f27fb3798662ef64cde99f57603f79#egg=xblock-utils
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment