Skip to content

Commit b909d48

Browse files
authored
Merge pull request #4562 from plotly/fix-3567-orjson-import
Fix `orjson` loading error
2 parents 586aeeb + 4f72c59 commit b909d48

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

doc/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ orjson
3737
dash-bio
3838
jinja2<3.1
3939
parmed<=3.4.4; python_version<"3.8"
40+
dask==2022.2.0
4041
polars
41-
dask==2022.2.0

packages/python/plotly/_plotly_utils/optional_imports.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Stand-alone module to provide information about whether optional deps exist.
33
44
"""
5+
56
from importlib import import_module
67
import logging
78
import sys
@@ -19,10 +20,9 @@ def get_module(name, should_load=True):
1920
:return: (module|None) If import succeeds, the module will be returned.
2021
2122
"""
22-
if name in sys.modules:
23-
return sys.modules[name]
2423
if not should_load:
25-
return None
24+
return sys.modules.get(name, None)
25+
2626
if name not in _not_importable:
2727
try:
2828
return import_module(name)
@@ -32,3 +32,5 @@ def get_module(name, should_load=True):
3232
_not_importable.add(name)
3333
msg = f"Error importing optional module {name}"
3434
logger.exception(msg)
35+
36+
return None
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
requests==2.25.1
22
tenacity==6.2.0
3-
pytest==6.2.3
3+
pytest==8.1.1

packages/python/plotly/test_requirements/requirements_38_optional.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ numpy==1.20.2
55
xarray==0.17.0
66
statsmodels
77
Pillow==8.2.0
8-
pytest==6.2.3
8+
pytest==8.1.1
99
pytz==2021.1
1010
ipython[all]==7.22.0
1111
ipywidgets==8.0.2

0 commit comments

Comments
 (0)