Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: remove unused libsass dependency #1987

Merged
merged 1 commit into from
Jul 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ clean: ## remove generated byte code, coverage reports, and build artifacts
##################

install-python: ## Install python dependencies
pip install -r requirements/base.txt --only-binary=lxml,libsass
pip install -r requirements/base.txt --only-binary=lxml

install-js: ## install JavaScript dependencies
npm install
Expand Down
2 changes: 1 addition & 1 deletion openassessment/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
Initialization Information for Open Assessment Module
"""
__version__ = '5.1.1'
__version__ = '5.2.0'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "edx-ora2",
"version": "5.1.1",
"version": "5.2.0",
"repository": "https://github.com/openedx/edx-ora2.git",
"dependencies": {
"@edx/frontend-build": "^6.1.1",
Expand Down
1 change: 0 additions & 1 deletion requirements/base.in
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ defusedxml
django-model-utils
jsonfield
lazy
libsass
loremipsum
lxml
path.py
Expand Down
2 changes: 0 additions & 2 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,6 @@ jsonfield==3.1.0
# edx-submissions
lazy==1.5
# via -r requirements/base.in
libsass==0.22.0
# via -r requirements/base.in
loremipsum==1.0.5
# via
# -c requirements/constraints.txt
Expand Down
2 changes: 0 additions & 2 deletions requirements/quality.txt
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,6 @@ lazy==1.5
# via -r requirements/test.txt
lazy-object-proxy==1.9.0
# via astroid
libsass==0.22.0
# via -r requirements/test.txt
loremipsum==1.0.5
# via
# -c requirements/constraints.txt
Expand Down
2 changes: 0 additions & 2 deletions requirements/test-acceptance.txt
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,6 @@ lazy==1.5
# via
# -r requirements/test.txt
# bok-choy
libsass==0.22.0
# via -r requirements/test.txt
loremipsum==1.0.5
# via
# -c requirements/constraints.txt
Expand Down
2 changes: 0 additions & 2 deletions requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,6 @@ junit-xml==1.9
# via cfn-lint
lazy==1.5
# via -r requirements/base.txt
libsass==0.22.0
# via -r requirements/base.txt
loremipsum==1.0.5
# via
# -c requirements/constraints.txt
Expand Down
Loading