-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BB-2659 juniper xblock html and xblock completable (#4)
* Update requirements * Fix some pydocstyle errors * Comment on the requirement for Python 3.5 * Update the CircleCI configuration to use Python 3.5 * Install requirements in correct order * Update versions
- Loading branch information
Showing
10 changed files
with
34 additions
and
28 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""Completable HTML XBlock module""" | ||
"""Completable HTML XBlock module.""" | ||
from __future__ import absolute_import | ||
|
||
from .html import CompletableHTML5XBlock |
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 @@ | ||
-r requirements/base.txt |
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# Requirements for app run | ||
|
||
git+https://github.com/edx/[email protected]#egg=xblock-utils==1.1.1 | ||
django-statici18n==1.8.0 | ||
edx-i18n-tools==0.4.7 | ||
Mako==1.0.7 | ||
bleach==2.1.4 | ||
html-xblock~=0.1.1 | ||
git+https://github.com/edx/[email protected]#egg=xblock-utils==2.1.1 | ||
django-statici18n==1.9.0 | ||
edx-i18n-tools==0.5.3 | ||
Mako==1.1.3 | ||
bleach==3.1.5 | ||
html-xblock~=1.0.0 | ||
django~=2.2 |
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Requirements for code quality checks | ||
|
||
isort==4.3.4 | ||
astroid==1.5.2 | ||
pycodestyle==2.4.0 | ||
pydocstyle==2.1.1 | ||
pylint==1.7.1 | ||
caniusepython3==7.0.0 | ||
edx_lint==0.5.5 | ||
isort==4.3.21 | ||
astroid==2.3.3 | ||
pycodestyle==2.6.0 | ||
pydocstyle==5.0.2 | ||
pylint==2.4.2 | ||
caniusepython3==7.2.0 | ||
edx-lint==1.4.1 |
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# Requirements for test runs | ||
|
||
codecov==2.0.15 | ||
diff-cover==1.0.4 | ||
diff-cover==2.6.1 | ||
django-nose==1.4.4 | ||
lazy==1.1 | ||
pytest-cov==2.6.0 | ||
tox==3.1.3 | ||
tox-battery==0.5.1 | ||
lazy==1.4 | ||
pytest-cov==2.8.1 | ||
tox==3.15.0 | ||
tox-battery==0.6.0 | ||
mock==3.0.5 | ||
|
||
# Github requirements | ||
git+https://github.com/edx/django-pyfs.git@1.0.3#egg=django-pyfs==1.0.3 | ||
git+https://github.com/edx/xblock-sdk.git#egg=xblock-sdk | ||
git+https://github.com/edx/django-pyfs.git@2.1#egg=django-pyfs==2.1 | ||
xblock-sdk |
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 |
---|---|---|
@@ -1 +1 @@ | ||
"""Tests module""" | ||
"""Tests module.""" |