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 markdown syntax, typo in docs #2455

Merged
merged 5 commits into from
May 10, 2020
Merged
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [4.7.1] - 2020-05-08

### Fixed

- Fix `AttributeError: module 'plotly.graph_objs' has no attribute 'FigureWidget'` exception on `from plotly.graph_objs import *` when `ipywidgets` is not installed. Error also occurred when importing `plotly.figure_factor`. It is now possible to import `plotly.graph_objs.FigureWidget` when `ipywidgets` is not installed, and an informative `ImportError` exception will be raised in the `FigureWidget` constructor ([#2443](https://github.com/plotly/plotly.py/issues/2443), [#1111](https://github.com/plotly/plotly.py/issues/1111)).
- Fix `TypeError: unhashable type: 'Template'` during `Figure` construction when `plotly.io.templates.default` is set to a `Template` object rather than a string.


## [4.7.0] - 2020-05-06

### Updated
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

## Quickstart

`pip install plotly==4.7.0`
`pip install plotly==4.7.1`

Inside [Jupyter notebook](https://jupyter.org/install) (installable with `pip install "notebook>=5.3" "ipywidgets>=7.2"`):

Expand Down Expand Up @@ -82,13 +82,13 @@ Built on top of [plotly.js](https://github.com/plotly/plotly.js), `plotly.py` is
plotly.py may be installed using pip...

```
pip install plotly==4.7.0
pip install plotly==4.7.1
```

or conda.

```
conda install -c plotly plotly=4.7.0
conda install -c plotly plotly=4.7.1
```

### Jupyter Notebook Support
Expand Down Expand Up @@ -125,10 +125,10 @@ Then run the following commands to install the required JupyterLab extensions (n

```
# Basic JupyterLab renderer support
jupyter labextension install jupyterlab-plotly@4.7.0
jupyter labextension install jupyterlab-plotly@4.7.1

# OPTIONAL: Jupyter widgets extension for FigureWidget support
jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.7.0
jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.7.1
```

Please check out our [Troubleshooting guide](https://plotly.com/python/troubleshooting/) if you run into any problems with JupyterLab.
Expand Down
18 changes: 10 additions & 8 deletions doc/python/creating-and-updating-figures.md
Original file line number Diff line number Diff line change
Expand Up @@ -613,20 +613,22 @@ There are also `for_each_xaxis()` and `for_each_yaxis()` methods that are analog
### Other Update Methods

Figures created with the plotly.py graphing library also support:
- the `update_layout_images()` method in order to [update background layout images](/python/images/),
- `update_annotations()` in order to [update annotations](/python/text-and-annotations/#multiple-annotations),
- and `update-shapes()` in order to [update shapes](/python/shapes/).

- the `update_layout_images()` method in order to [update background layout images](/python/images/),
- `update_annotations()` in order to [update annotations](/python/text-and-annotations/#multiple-annotations),
- and `update_shapes()` in order to [update shapes](/python/shapes/).

#### Chaining Figure Operations

All of the figure update operations described above are methods that return a reference to the figure being modified. This makes it possible the chain multiple figure modification operations together into a single expression.

Here is an example of a chained expression that creates:
- a faceted scatter plot with OLS trend lines using Plotly Express,
- sets the title font size using `update_layout()`,
- disables vertical grid lines using `update_xaxes()`,
- updates the width and dash pattern of the trend lines using `update_traces()`,
- and then displays the figure using `show()`.

- a faceted scatter plot with OLS trend lines using Plotly Express,
- sets the title font size using `update_layout()`,
- disables vertical grid lines using `update_xaxes()`,
- updates the width and dash pattern of the trend lines using `update_traces()`,
- and then displays the figure using `show()`.

```python
import plotly.express as px
Expand Down
8 changes: 4 additions & 4 deletions doc/python/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ Thanks to deep integration with the [orca](https://github.com/plotly/orca) image
plotly.py may be installed using pip...

```
$ pip install plotly==4.7.0
$ pip install plotly==4.7.1
```

or conda.

```
$ conda install -c plotly plotly=4.7.0
$ conda install -c plotly plotly=4.7.1
```

This package contains everything you need to write figures to standalone HTML files.
Expand Down Expand Up @@ -135,10 +135,10 @@ Then run the following commands to install the required JupyterLab extensions (n

```
# JupyterLab renderer support
jupyter labextension install jupyterlab-plotly@4.7.0
jupyter labextension install jupyterlab-plotly@4.7.1

# OPTIONAL: Jupyter widgets extension
jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.7.0
jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.7.1
```

These packages contain everything you need to run JupyterLab...
Expand Down
2 changes: 1 addition & 1 deletion packages/javascript/jupyterlab-plotly/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/javascript/jupyterlab-plotly/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupyterlab-plotly",
"version": "4.7.0",
"version": "4.7.1",
"description": "The plotly JupyterLab extension",
"author": "The plotly.py team",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/javascript/plotlywidget/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/javascript/plotlywidget/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plotlywidget",
"version": "4.7.0",
"version": "4.7.1",
"description": "The plotly JupyterLab extension",
"author": "The plotly.py team",
"license": "MIT",
Expand Down
27 changes: 16 additions & 11 deletions packages/python/plotly/codegen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,14 +269,14 @@ def perform_codegen():
optional_figure_widget_import = f"""
if sys.version_info < (3, 7):
try:
import ipywidgets
from distutils.version import LooseVersion
if LooseVersion(ipywidgets.__version__) >= LooseVersion('7.0.0'):
import ipywidgets as _ipywidgets
from distutils.version import LooseVersion as _LooseVersion
if _LooseVersion(_ipywidgets.__version__) >= _LooseVersion("7.0.0"):
from ..graph_objs._figurewidget import FigureWidget
del LooseVersion
del ipywidgets
except ImportError:
pass
else:
raise ImportError()
except Exception:
from ..missing_ipywidgets import FigureWidget
else:
__all__.append("FigureWidget")
orig_getattr = __getattr__
Expand All @@ -285,12 +285,17 @@ def __getattr__(import_name):
try:
import ipywidgets
from distutils.version import LooseVersion
if LooseVersion(ipywidgets.__version__) >= LooseVersion('7.0.0'):

if LooseVersion(ipywidgets.__version__) >= LooseVersion("7.0.0"):
from ..graph_objs._figurewidget import FigureWidget

return FigureWidget
except ImportError:
pass

else:
raise ImportError()
except Exception:
from ..missing_ipywidgets import FigureWidget
return FigureWidget

return orig_getattr(import_name)
"""
# ### __all__ ###
Expand Down
2 changes: 1 addition & 1 deletion packages/python/plotly/plotly/_widget_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# for automated dev builds
#
# It is edited by hand prior to official releases
__frontend_version__ = "4.7.0"
__frontend_version__ = "4.7.1"
10 changes: 8 additions & 2 deletions packages/python/plotly/plotly/basedatatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1951,8 +1951,14 @@ def _initialize_layout_template(self):
if self._allow_disable_validation:
self._layout_obj._validate = False
try:
template_dict = pio.templates[pio.templates.default]
self._layout_obj.template = template_dict
if isinstance(pio.templates.default, BasePlotlyType):
# Template object. Don't want to actually import `Template`
# here for performance so we check against `BasePlotlyType`
template_object = pio.templates.default
else:
# Name of registered template object
template_object = pio.templates[pio.templates.default]
self._layout_obj.template = template_object
finally:
self._layout_obj._validate = self._validate

Expand Down
22 changes: 13 additions & 9 deletions packages/python/plotly/plotly/graph_objects/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,15 +261,15 @@

if sys.version_info < (3, 7):
try:
import ipywidgets
from distutils.version import LooseVersion
import ipywidgets as _ipywidgets
from distutils.version import LooseVersion as _LooseVersion

if LooseVersion(ipywidgets.__version__) >= LooseVersion("7.0.0"):
if _LooseVersion(_ipywidgets.__version__) >= _LooseVersion("7.0.0"):
from ..graph_objs._figurewidget import FigureWidget
del LooseVersion
del ipywidgets
except ImportError:
pass
else:
raise ImportError()
except Exception:
from ..missing_ipywidgets import FigureWidget
else:
__all__.append("FigureWidget")
orig_getattr = __getattr__
Expand All @@ -284,7 +284,11 @@ def __getattr__(import_name):
from ..graph_objs._figurewidget import FigureWidget

return FigureWidget
except ImportError:
pass
else:
raise ImportError()
except Exception:
from ..missing_ipywidgets import FigureWidget

return FigureWidget

return orig_getattr(import_name)
22 changes: 13 additions & 9 deletions packages/python/plotly/plotly/graph_objs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,15 +261,15 @@

if sys.version_info < (3, 7):
try:
import ipywidgets
from distutils.version import LooseVersion
import ipywidgets as _ipywidgets
from distutils.version import LooseVersion as _LooseVersion

if LooseVersion(ipywidgets.__version__) >= LooseVersion("7.0.0"):
if _LooseVersion(_ipywidgets.__version__) >= _LooseVersion("7.0.0"):
from ..graph_objs._figurewidget import FigureWidget
del LooseVersion
del ipywidgets
except ImportError:
pass
else:
raise ImportError()
except Exception:
from ..missing_ipywidgets import FigureWidget
else:
__all__.append("FigureWidget")
orig_getattr = __getattr__
Expand All @@ -284,7 +284,11 @@ def __getattr__(import_name):
from ..graph_objs._figurewidget import FigureWidget

return FigureWidget
except ImportError:
pass
else:
raise ImportError()
except Exception:
from ..missing_ipywidgets import FigureWidget

return FigureWidget

return orig_getattr(import_name)
15 changes: 15 additions & 0 deletions packages/python/plotly/plotly/missing_ipywidgets.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from .basedatatypes import BaseFigure


class FigureWidget(BaseFigure):
"""
FigureWidget stand-in for use when ipywidgets is not installed. The only purpose
of this class is to provide something to import as
`plotly.graph_objs.FigureWidget` when ipywidgets is not installed. This class
simply raises an informative error message when the constructor is called
"""

def __init__(self, *args, **kwargs):
raise ImportError(
"Please install ipywidgets>=7.0.0 to use the FigureWidget class"
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import pytest

# Use wildcard import to make sure FigureWidget is always included
from plotly.graph_objects import *
from plotly.missing_ipywidgets import FigureWidget as FigureWidgetMissingIPywidgets

try:
import ipywidgets as _ipywidgets
from distutils.version import LooseVersion as _LooseVersion

if _LooseVersion(_ipywidgets.__version__) >= _LooseVersion("7.0.0"):
missing_ipywidgets = False
else:
raise ImportError()
except Exception:
missing_ipywidgets = True


if missing_ipywidgets:

def test_import_figurewidget_without_ipywidgets():
assert FigureWidget is FigureWidgetMissingIPywidgets

with pytest.raises(ImportError):
# ipywidgets import error raised on construction, not import
FigureWidget()


else:

def test_import_figurewidget_with_ipywidgets():
from plotly.graph_objs._figurewidget import (
FigureWidget as FigureWidgetWithIPywidgets,
)

assert FigureWidget is FigureWidgetWithIPywidgets
fig = FigureWidget()
assert isinstance(fig, FigureWidgetWithIPywidgets)
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@
import plotly.graph_objs as go
import pytest

try:
go.FigureWidget()
figure_widget_available = True
except ImportError:
figure_widget_available = False


class TestNoFrames(TestCase):
if "FigureWidget" in go.__dict__.keys():
if figure_widget_available:

def test_no_frames_in_constructor_kwarg(self):
with pytest.raises(ValueError):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,12 @@ def test_template_in(self):
def test_template_iter(self):
self.assertIn("test_template", set(pio.templates))

def test_template_default_as_object(self):
template = go.layout.Template({"layout": {"font": {"family": "Rockwell"}}})
pio.templates.default = template
fig = go.Figure()
self.assertEqual(fig.layout.template, template)


class TestToTemplated(TestCaseNoTemplate):
def test_move_layout_nested_properties(self):
Expand Down
2 changes: 1 addition & 1 deletion packages/python/plotly/plotlywidget/static/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.