Skip to content

Commit

Permalink
Merge pull request #108 from salman2013/salman/remove-bok-choy
Browse files Browse the repository at this point in the history
chore: remove bok-choy usage
  • Loading branch information
Feanil Patel authored Nov 6, 2023
2 parents 6b35f7f + f7040f4 commit c930c52
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 109 deletions.
5 changes: 4 additions & 1 deletion image_explorer/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@

import logging

from xblockutils.resources import ResourceLoader
try:
from xblock.utils.resources import ResourceLoader
except ModuleNotFoundError:
from xblockutils.resources import ResourceLoader


log = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def package_data(pkg, root_list):

setup(
name='xblock-image-explorer',
version='2.0',
version='2.1.0',
description='XBlock - Image Explorer',
packages=['image_explorer'],
install_requires=[
Expand Down
1 change: 0 additions & 1 deletion test_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
bok-choy==1.1.1
edx-lint==5.3.2
mock==5.0.1
pytest==7.2.1
Expand Down
106 changes: 0 additions & 106 deletions tests/integration/test_image_explorer.py

This file was deleted.

0 comments on commit c930c52

Please sign in to comment.