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

fix: importlib_resources used from library #35

Merged
merged 1 commit into from
Jul 4, 2024
Merged
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
9 changes: 8 additions & 1 deletion h5pxblock/h5pxblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import logging
import os

import importlib_resources
from enum import Enum

from datetime import datetime
Expand All @@ -30,6 +29,14 @@
from xblock.utils.resources import ResourceLoader
except ModuleNotFoundError: # For backward compatibility with releases older than Quince.
from xblockutils.resources import ResourceLoader
try:
# Older Open edX releases (Redwood and earlier) install a backported version of
# importlib.resources: https://pypi.org/project/importlib-resources/
import importlib_resources
except ModuleNotFoundError:
# Starting with Sumac, Open edX drops importlib-resources in favor of the standard library:
# https://docs.python.org/3/library/importlib.resources.html#module-importlib.resources
from importlib import resources as importlib_resources

from h5pxblock.utils import (
get_h5p_storage,
Expand Down
Loading