-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
feat: modifying code generation to reduce bundle size #4978
base: main
Are you sure you want to change the base?
Changes from all commits
3cb9303
556dd53
13df0c5
d339c7b
51911a4
c3dbd41
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,10 @@ | |
get_data_validator_instance, | ||
) | ||
|
||
# Target Python version for code formatting with Black. | ||
# Must be one of the values listed in pyproject.toml. | ||
BLACK_TARGET_VERSION = "py311" | ||
|
||
|
||
# Import notes | ||
# ------------ | ||
|
@@ -85,7 +89,7 @@ def preprocess_schema(plotly_schema): | |
items["colorscale"] = items.pop("concentrationscales") | ||
|
||
|
||
def perform_codegen(): | ||
def perform_codegen(reformat=True): | ||
# Set root codegen output directory | ||
# --------------------------------- | ||
# (relative to project root) | ||
|
@@ -267,36 +271,24 @@ def perform_codegen(): | |
root_datatype_imports.append(f"._deprecations.{dep_clas}") | ||
|
||
optional_figure_widget_import = f""" | ||
if sys.version_info < (3, 7) or TYPE_CHECKING: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @alexcjohnson commented on this in a Slack thread saying "I would have thought we’d still want the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @gvwilson Have your thoughts on this I don't have enough context here to understand the implications of removing the |
||
try: | ||
import ipywidgets as _ipywidgets | ||
from packaging.version import Version as _Version | ||
if _Version(_ipywidgets.__version__) >= _Version("7.0.0"): | ||
from ..graph_objs._figurewidget import FigureWidget | ||
else: | ||
raise ImportError() | ||
except Exception: | ||
from ..missing_anywidget import FigureWidget | ||
else: | ||
__all__.append("FigureWidget") | ||
orig_getattr = __getattr__ | ||
def __getattr__(import_name): | ||
if import_name == "FigureWidget": | ||
try: | ||
import ipywidgets | ||
from packaging.version import Version | ||
|
||
if Version(ipywidgets.__version__) >= Version("7.0.0"): | ||
from ..graph_objs._figurewidget import FigureWidget | ||
|
||
return FigureWidget | ||
else: | ||
raise ImportError() | ||
except Exception: | ||
from ..missing_anywidget import FigureWidget | ||
__all__.append("FigureWidget") | ||
orig_getattr = __getattr__ | ||
def __getattr__(import_name): | ||
if import_name == "FigureWidget": | ||
try: | ||
import ipywidgets | ||
from packaging.version import Version | ||
|
||
if Version(ipywidgets.__version__) >= Version("7.0.0"): | ||
from ..graph_objs._figurewidget import FigureWidget | ||
return FigureWidget | ||
else: | ||
raise ImportError() | ||
except Exception: | ||
from ..missing_anywidget import FigureWidget | ||
return FigureWidget | ||
|
||
return orig_getattr(import_name) | ||
return orig_getattr(import_name) | ||
""" | ||
# ### __all__ ### | ||
for path_parts, class_names in alls.items(): | ||
|
@@ -337,9 +329,13 @@ def __getattr__(import_name): | |
f.write(graph_objects_init_source) | ||
|
||
# ### Run black code formatter on output directories ### | ||
subprocess.call(["black", "--target-version=py36", validators_pkgdir]) | ||
subprocess.call(["black", "--target-version=py36", graph_objs_pkgdir]) | ||
subprocess.call(["black", "--target-version=py36", graph_objects_path]) | ||
if reformat: | ||
target_version = f"--target-version={BLACK_TARGET_VERSION}" | ||
subprocess.call(["black", target_version, validators_pkgdir]) | ||
subprocess.call(["black", target_version, graph_objs_pkgdir]) | ||
subprocess.call(["black", target_version, graph_objects_path]) | ||
else: | ||
print("skipping reformatting") | ||
|
||
|
||
if __name__ == "__main__": | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Black docs say to pass ALL Python versions supported by the code as a
--target-version
— should we follow that recommendation?I guess the configuration in the
pyproject.toml
doesn't play nice with the codegen, which is why we need to redefinetarget_version
here?