Skip to content

Commit 19d02b1

Browse files
authored
Merge pull request #4151 from plotly/master
Update docs with new version of Plotly.py
2 parents bf7eace + 51d8d92 commit 19d02b1

File tree

16 files changed

+58
-19
lines changed

16 files changed

+58
-19
lines changed

.circleci/config.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,15 @@ jobs:
150150
- test_optional:
151151
py: "39"
152152

153+
# Pandas
154+
155+
python_39_pandas_2_optional:
156+
docker:
157+
- image: circleci/python:3.9-buster-node-browsers
158+
steps:
159+
- test_optional:
160+
py: "39_pandas_2"
161+
153162
# Orca
154163
python_38_orca:
155164
docker:
@@ -470,6 +479,7 @@ workflows:
470479
- python_37_optional
471480
- python_38_optional
472481
- python_39_optional
482+
- python_39_pandas_2_optional
473483
- python_38_orca
474484
- python_37_percy
475485
- build-doc

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [5.14.1] - 2023-04-05
6+
7+
### Fixed
8+
- Fixed compatibility issue with Pandas 2.0 [[#4103](https://github.com/plotly/plotly.py/pull/4103)]
9+
510
## [5.14.0] - 2023-03-29
611

712
### Updated

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
## Quickstart
3535

36-
`pip install plotly==5.14.0`
36+
`pip install plotly==5.14.1`
3737

3838
Inside [Jupyter](https://jupyter.org/install) (installable with `pip install "jupyterlab>=3" "ipywidgets>=7.6"`):
3939

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

8080
```
81-
pip install plotly==5.14.0
81+
pip install plotly==5.14.1
8282
```
8383

8484
or conda.
8585

8686
```
87-
conda install -c plotly plotly=5.14.0
87+
conda install -c plotly plotly=5.14.1
8888
```
8989

9090
### JupyterLab Support
@@ -106,7 +106,7 @@ The instructions above apply to JupyterLab 3.x. **For JupyterLab 2 or earlier**,
106106

107107
```
108108
# JupyterLab 2.x renderer support
109-
jupyter labextension install jupyterlab-plotly@5.14.0 @jupyter-widgets/jupyterlab-manager
109+
jupyter labextension install jupyterlab-plotly@5.14.1 @jupyter-widgets/jupyterlab-manager
110110
```
111111

112112
Please check out our [Troubleshooting guide](https://plotly.com/python/troubleshooting/) if you run into any problems with JupyterLab.

binder/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
jupytext
2-
plotly==5.14.0
2+
plotly==5.14.1
33
jupyter
44
notebook
55
pandas==1.0.3

doc/apidoc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# The short X.Y version
2929
version = ""
3030
# The full version, including alpha/beta/rc tags
31-
release = "5.14.0"
31+
release = "5.14.1"
3232

3333

3434
# -- General configuration ---------------------------------------------------

doc/python/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ We also encourage you to join the [Plotly Community Forum](http://community.plot
5858
`plotly` may be installed using `pip`:
5959

6060
```
61-
$ pip install plotly==5.14.0
61+
$ pip install plotly==5.14.1
6262
```
6363

6464
or `conda`:
6565

6666
```
67-
$ conda install -c plotly plotly=5.14.0
67+
$ conda install -c plotly plotly=5.14.1
6868
```
6969
This package contains everything you need to write figures to standalone HTML files.
7070

@@ -152,7 +152,7 @@ The instructions above apply to JupyterLab 3.x. **For JupyterLab 2 or earlier**,
152152

153153
```
154154
# JupyterLab 2.x renderer support
155-
jupyter labextension install jupyterlab-plotly@5.14.0 @jupyter-widgets/jupyterlab-manager
155+
jupyter labextension install jupyterlab-plotly@5.14.1 @jupyter-widgets/jupyterlab-manager
156156
```
157157

158158
Please check out our [Troubleshooting guide](/python/troubleshooting/) if you run into any problems with JupyterLab, particularly if you are using multiple python environments inside Jupyter.

doc/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
plotly==5.14.0
1+
plotly==5.14.1
22
jupytext==1.1.1
33
ipywidgets==7.7.2
44
jupyter-client<7

packages/javascript/jupyterlab-plotly/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/javascript/jupyterlab-plotly/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyterlab-plotly",
3-
"version": "5.14.0",
3+
"version": "5.14.1",
44
"description": "The plotly Jupyter extension",
55
"author": "The plotly.py team",
66
"license": "MIT",

packages/python/plotly/_plotly_utils/tests/validators/test_pandas_series_input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def color_validator(request):
4040
"uint16",
4141
"uint32",
4242
"uint64",
43-
"float16",
43+
# "float16",
4444
"float32",
4545
"float64",
4646
]

0 commit comments

Comments
 (0)