Skip to content

Commit f0f2a3a

Browse files
Merge pull request #4017 from plotly/release-5.12.0
version changes for v5.12.0
2 parents 470cbc4 + baedaab commit f0f2a3a

File tree

10 files changed

+57
-7786
lines changed

10 files changed

+57
-7786
lines changed

Diff for: .circleci/config.yml

+8
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,7 @@ jobs:
286286
cd packages/python/plotly
287287
python setup.py sdist bdist_wheel
288288
cp -R dist ../../../output/dist
289+
git status
289290
290291
- run:
291292
name: Conda Build
@@ -295,6 +296,7 @@ jobs:
295296
cd packages/python/plotly
296297
conda build recipe/
297298
mv /opt/conda/envs/env/conda-bld/noarch/plotly*.tar.bz2 ../../../output
299+
git status
298300
299301
- run:
300302
name: NPM Pack
@@ -310,6 +312,12 @@ jobs:
310312
command: |
311313
tar czf output.tgz output
312314
315+
- run:
316+
name: Git Diff
317+
command: |
318+
git status
319+
git diff
320+
313321
- store_artifacts:
314322
path: output.tgz
315323

Diff for: CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
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-
## UNRELEASED
5+
## [5.12.0] - 2023-01-12
66

77
### Updated
8-
- Support for ipywidgets 8 [#3930](https://github.com/plotly/plotly.py/pull/3930)
8+
- Support for ipywidgets 8 [[#3930](https://github.com/plotly/plotly.py/pull/3930)]
99
- Updated Plotly.js to from version 2.16.1 to version 2.17.1. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#2170----2022-12-22) for more information. Notable changes include:
1010
- Add `shift` and `autoshift` to cartesian y axes to help avoid overlapping of multiple axes [[#6334](https://github.com/plotly/plotly.js/pull/6334)],
1111
with thanks to [Gamma Technologies](https://www.gtisoft.com) for sponsoring the related development!
@@ -16,6 +16,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1616
- Fixed the usage of some deprecated NumPy types which were removed in NumPy 1.24 [[#3997](https://github.com/plotly/plotly.py/pull/3997)]
1717
- Fixed bug for trendlines with datetime axes [[#3683](https://github.com/plotly/plotly.py/issues/3683)]
1818
- `marker.angle` attribute now accepts iterables where appropriate [[#4013](https://github.com/plotly/plotly.py/issues/4013)]
19+
- `selector=0` now correctly returns the first trace in `.select_traces()` and related methods [[#3817](https://github.com/plotly/plotly.py/issues/3817)]
1920

2021
## [5.11.0] - 2022-10-27
2122

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
## Quickstart
3535

36-
`pip install plotly==5.11.0`
36+
`pip install plotly==5.12.0`
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.11.0
81+
pip install plotly==5.12.0
8282
```
8383

8484
or conda.
8585

8686
```
87-
conda install -c plotly plotly=5.11.0
87+
conda install -c plotly plotly=5.12.0
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.11.0 @jupyter-widgets/jupyterlab-manager
109+
jupyter labextension install jupyterlab-plotly@5.12.0 @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.

Diff for: doc/python/bio-alignment-chart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Note that the AlignmentChart only returns a chart of the sequence, while Alignme
4444
import plotly.express as px
4545
import pandas as pd
4646

47-
df = (pd.read_csv('https://git.io/gene_conservation.csv')
47+
df = (pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/Dash_Bio/Genetic/gene_conservation.csv')
4848
.set_index('0')
4949
.loc[['consensus','conservation']]
5050
.T

Diff for: doc/python/bio-clustergram.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import pandas as pd
4040
import dash_bio
4141

4242

43-
df = pd.read_csv('https://git.io/clustergram_brain_cancer.csv')
43+
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/Dash_Bio/Chromosomal/clustergram_brain_cancer.csv')
4444

4545
dash_bio.Clustergram(
4646
data=df,
@@ -60,7 +60,7 @@ import pandas as pd
6060
import dash_bio
6161

6262

63-
df = pd.read_csv('https://git.io/clustergram_brain_cancer.csv')
63+
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/Dash_Bio/Chromosomal/clustergram_brain_cancer.csv')
6464

6565
dash_bio.Clustergram(
6666
data=df,
@@ -86,7 +86,7 @@ import pandas as pd
8686
import dash_bio
8787

8888

89-
df = pd.read_csv('https://git.io/clustergram_brain_cancer.csv')
89+
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/Dash_Bio/Chromosomal/clustergram_brain_cancer.csv')
9090

9191
dash_bio.Clustergram(
9292
data=df,

Diff for: doc/python/bio-manhattanplot.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import pandas as pd
4141
import dash_bio
4242

4343

44-
df = pd.read_csv('https://git.io/manhattan_data.csv')
44+
df = pd.read_csv('https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/manhattan_data.csv')
4545

4646

4747
dash_bio.ManhattanPlot(
@@ -57,7 +57,7 @@ import pandas as pd
5757
import dash_bio
5858

5959

60-
df = pd.read_csv('https://git.io/manhattan_data.csv')
60+
df = pd.read_csv('https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/manhattan_data.csv')
6161

6262
dash_bio.ManhattanPlot(
6363
dataframe=df,

Diff for: doc/python/bio-volcano-plot.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import pandas as pd
4141
import dash_bio
4242

4343

44-
df = pd.read_csv('https://git.io/volcano_data1.csv')
44+
df = pd.read_csv('https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/volcano_data1.csv')
4545

4646
dash_bio.VolcanoPlot(
4747
dataframe=df,
@@ -57,7 +57,7 @@ import pandas as pd
5757
import dash_bio
5858

5959

60-
df = pd.read_csv('https://git.io/volcano_data1.csv')
60+
df = pd.read_csv('https://raw.githubusercontent.com/plotly/dash-bio-docs-files/master/volcano_data1.csv')
6161

6262
dash_bio.VolcanoPlot(
6363
dataframe=df,

0 commit comments

Comments
 (0)