Skip to content

Commit

Permalink
Update the import statement for xblock-utils
Browse files Browse the repository at this point in the history
The `xblock-utils` library has been deprecated as a separate package;
the `utils` library has been moved into the `XBlock` and should now
be imported from `xblock.utils` instead.
(openedx/XBlock#675)
  • Loading branch information
Maari Tamm committed Jul 24, 2024
1 parent 6933eea commit e212b6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions markdown_xblock/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
from xblock.core import XBlock
from xblock.fields import List, Scope, String
from xblock.fragment import Fragment
from xblockutils.resources import ResourceLoader
from xblockutils.settings import XBlockWithSettingsMixin
from xblockutils.studio_editable import StudioEditableXBlockMixin, loader
from xblock.utils.resources import ResourceLoader
from xblock.utils.settings import XBlockWithSettingsMixin
from xblock.utils.studio_editable import StudioEditableXBlockMixin, loader

from .utils import _

Expand Down
1 change: 0 additions & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Requirements for app run

xblock-utils<=4.0.0
xblock-sdk<0.9.0
django-statici18n<2.5
edx-i18n-tools<1.4
Expand Down

0 comments on commit e212b6d

Please sign in to comment.