diff --git a/.circleci/config.yml b/.circleci/config.yml index ee9557f5d98..37dc02d23a8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -272,7 +272,7 @@ jobs: eval "$(conda shell.bash hook)" conda activate env cd packages/javascript/jupyterlab-plotly - npm install + npm ci npm run build:prod git status @@ -283,10 +283,12 @@ jobs: conda activate env cd packages/python/plotly python setup.py sdist bdist_wheel + mkdir pypi_dist + tar czf pypi_dist/all.tgz dist - store_artifacts: - path: packages/python/plotly/dist - destination: dist + path: packages/python/plotly/pypi_dist + destination: pypi_dist - run: name: Conda Build diff --git a/CHANGELOG.md b/CHANGELOG.md index 49170a32a0d..fcd11c30e60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [5.8.2] - 2022-06-10 + +### Fixed + + - Fixed a syntax error that caused rendering issues in Databricks notebooks and likely elsewhere. [#3763](https://github.com/plotly/plotly.py/pull/3763) with thanks to [@fwetdb](https://github.com/fwetdb) + +## [5.8.1] - 2022-06-08 + +(no changes, due to a mixup with the build process!) + + ## [5.8.0] - 2022-05-09 ### Fixed diff --git a/README.md b/README.md index 557967a8da6..c40b1de6b7d 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ ## Quickstart -`pip install plotly==5.8.0` +`pip install plotly==5.8.2` Inside [Jupyter](https://jupyter.org/install) (installable with `pip install "jupyterlab>=3" "ipywidgets>=7.6"`): @@ -45,7 +45,6 @@ fig.show() See the [Python documentation](https://plotly.com/python/) for more examples. -Read about what's new in [plotly.py v4](https://medium.com/plotly/plotly-py-4-0-is-here-offline-only-express-first-displayable-anywhere-fc444e5659ee) ## Overview @@ -53,7 +52,7 @@ Read about what's new in [plotly.py v4](https://medium.com/plotly/plotly-py-4-0- Built on top of [plotly.js](https://github.com/plotly/plotly.js), `plotly.py` is a high-level, declarative charting library. plotly.js ships with over 30 chart types, including scientific charts, 3D graphs, statistical charts, SVG maps, financial charts, and more. -`plotly.py` is [MIT Licensed](https://github.com/plotly/plotly.py/blob/master/LICENSE.txt). Plotly graphs can be viewed in Jupyter notebooks, standalone HTML files, or hosted online using [Chart Studio Cloud](https://chart-studio.plotly.com/feed/). +`plotly.py` is [MIT Licensed](https://github.com/plotly/plotly.py/blob/master/LICENSE.txt). Plotly graphs can be viewed in Jupyter notebooks, standalone HTML files, or integrated into [Dash applications](https://dash.plotly.com/). [Contact us](https://plotly.com/consulting-and-oem/) for consulting, dashboard development, application integration, and feature additions. @@ -79,13 +78,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==5.8.0 +pip install plotly==5.8.2 ``` or conda. ``` -conda install -c plotly plotly=5.8.0 +conda install -c plotly plotly=5.8.2 ``` ### JupyterLab Support @@ -107,7 +106,7 @@ The instructions above apply to JupyterLab 3.x. **For JupyterLab 2 or earlier**, ``` # JupyterLab 2.x renderer support -jupyter labextension install jupyterlab-plotly@5.8.0 @jupyter-widgets/jupyterlab-manager +jupyter labextension install jupyterlab-plotly@5.8.2 @jupyter-widgets/jupyterlab-manager ``` Please check out our [Troubleshooting guide](https://plotly.com/python/troubleshooting/) if you run into any problems with JupyterLab. @@ -188,21 +187,6 @@ or conda conda install -c plotly plotly-geo=1.0.0 ``` -### Chart Studio support - -The `chart-studio` package can be used to upload plotly figures to Plotly's Chart -Studio Cloud or On-Prem service. This package can be installed using pip... - -``` -pip install chart-studio==1.1.0 -``` - -or conda - -``` -conda install -c plotly chart-studio=1.1.0 -``` - ## Migration If you're migrating from plotly.py v3 to v4, please check out the [Version 4 migration guide](https://plotly.com/python/v4-migration/) diff --git a/binder/requirements.txt b/binder/requirements.txt index fbde6e87760..a89fb94e621 100644 --- a/binder/requirements.txt +++ b/binder/requirements.txt @@ -1,5 +1,5 @@ jupytext -plotly==5.7.0 +plotly==5.8.1 jupyter notebook pandas==1.0.3 diff --git a/doc/apidoc/conf.py b/doc/apidoc/conf.py index 602f6502f16..4f91672f2db 100644 --- a/doc/apidoc/conf.py +++ b/doc/apidoc/conf.py @@ -28,7 +28,7 @@ # The short X.Y version version = "" # The full version, including alpha/beta/rc tags -release = "5.7.0" +release = "5.8.1" # -- General configuration --------------------------------------------------- diff --git a/doc/python/annotated-heatmap.md b/doc/python/annotated-heatmap.md index fac53eb1a41..6a4adc4c45e 100644 --- a/doc/python/annotated-heatmap.md +++ b/doc/python/annotated-heatmap.md @@ -43,6 +43,8 @@ As of version 5.5.0 of `plotly`, the **recommended way to [display annotated hea #### Basic Annotated Heatmap for z-annotations +*New in v5.5* + After creating a figure with `px.imshow`, you can add z-annotations with `.update_traces(texttemplate="%{z}")`. ```python @@ -246,7 +248,7 @@ fig = px.imshow(color, color_continuous_scale=colorscale, aspect="auto", title='Periodic Table') fig.update_traces( text=symbol, texttemplate="%{text}", textfont_size=12, - customdata=np.moveaxis([element, atomic_mass], 0,-1), + customdata=np.moveaxis([element, atomic_mass], 0,-1), hovertemplate="%{customdata[0]}<br>Atomic Mass: %{customdata[1]:.2f}<extra></extra>" ) fig.update_xaxes(visible=False) diff --git a/doc/python/axes.md b/doc/python/axes.md index 4f3525cee77..643e0de5046 100644 --- a/doc/python/axes.md +++ b/doc/python/axes.md @@ -20,7 +20,7 @@ jupyter: name: python nbconvert_exporter: python pygments_lexer: ipython3 - version: 3.9.0 + version: 3.9.7 plotly: description: How to adjust axes properties in Python - axes titles, styling and coloring axes and grid lines, ticks, tick labels and more. @@ -293,6 +293,8 @@ fig.show() ##### Step for tick labels +*New in v5.6* + You can set a step for tick labels with `ticklabelstep`. In this example, we hide labels between every `2` ticks on the y axes. Similarly, this can be used with `fig.update_xaxes` for x axes: `fig.update_xaxes(ticklabelstep=2)`. ```python @@ -384,12 +386,10 @@ fig.show() _new in 5.8_ -You can position and style minor ticks on a Cartesian axis using `minor`. This takes a `dict` of properties to apply to minor ticks. Available properties include: `tickmode`, `tickvals`, `tickcolor`, `ticklen`, `tickwidth`, `dtick`, `tick0`, `nticks`, `ticks`, `showgrid`, `gridcolor`, `griddash`, and `gridwidth`. +You can position and style minor ticks on a Cartesian axis using the `minor` attribute. This takes a `dict` of properties to apply to minor ticks. See the [figure reference](https://plotly.com/python/reference/layout/xaxis/#layout-xaxis-minor) for full details on the accepted keys in this dict. In the following example, we add minor ticks to the x-axis and then to the y-axis. For the y-axis we add ticks on the inside: `ticks="inside"`. On the x-axis we've specified some additional properties to style the minor ticks, setting the length of the ticks with `ticklen` and the color with `tickcolor`. We've also turned on grid lines for the x-axis minor ticks using `showgrid`. -Note: Minor ticks and grid lines are not currently supported on color bars, ternary plots, polar charts, geo plots, or on multi-categorical, or 3D axes. - ```python import plotly.express as px import pandas as pd @@ -399,7 +399,7 @@ fig = px.scatter(df, x="total_bill", y="tip", color="sex") fig.update_xaxes(minor=dict(ticklen=6, tickcolor="black", showgrid=True)) -fig.update_yaxes(minor=dict(ticks="inside")) +fig.update_yaxes(minor_ticks="inside") fig.show() ``` @@ -490,15 +490,14 @@ fig.show() _new in 5.8_ -By default grid lines are `solid`. Set the `griddash` property to change this style. In this example we display the x-axis grid lines as `dot`. It can also be set to `dash`, `longdash`, `dashdot`, or `longdashdot`. +By default grid lines are `solid`. Set the `griddash` property to change this style. In this example we display the x-axis grid lines as `dash` and the minor grid lines as `dot`. Other allowable values are `longdash`, `dashdot`, or `longdashdot`. ```python import plotly.express as px df = px.data.iris() fig = px.scatter(df, x="sepal_width", y="sepal_length", facet_col="species") -fig.update_xaxes(showgrid=True, gridwidth=1, gridcolor='LightPink', griddash='dot') -fig.update_yaxes(showgrid=True, gridwidth=1, gridcolor='LightPink') +fig.update_xaxes(gridcolor='black', griddash='dash', minor_griddash="dot") fig.show() ``` diff --git a/doc/python/filled-area-plots.md b/doc/python/filled-area-plots.md index 96a932b1aa6..9853da0524a 100644 --- a/doc/python/filled-area-plots.md +++ b/doc/python/filled-area-plots.md @@ -63,7 +63,7 @@ IFrame(snippet_url + 'filled-area-plots', width='100%', height=1200) ### Pattern Fills -*New in v5.0* +*New in v5.7* Area charts afford the use of [patterns (also known as hatching or texture)](/python/pattern-hatching-texture/) in addition to color: diff --git a/doc/python/getting-started.md b/doc/python/getting-started.md index e075198e67d..3d3ba5f782a 100644 --- a/doc/python/getting-started.md +++ b/doc/python/getting-started.md @@ -58,13 +58,13 @@ We also encourage you to join the [Plotly Community Forum](http://community.plot `plotly` may be installed using `pip`: ``` -$ pip install plotly==5.7.0 +$ pip install plotly==5.8.1 ``` or `conda`: ``` -$ conda install -c plotly plotly=5.7.0 +$ conda install -c plotly plotly=5.8.1 ``` This package contains everything you need to write figures to standalone HTML files. @@ -148,7 +148,7 @@ The instructions above apply to JupyterLab 3.x. **For JupyterLab 2 or earlier**, ``` # JupyterLab 2.x renderer support -jupyter labextension install jupyterlab-plotly@5.7.0 @jupyter-widgets/jupyterlab-manager +jupyter labextension install jupyterlab-plotly@5.8.1 @jupyter-widgets/jupyterlab-manager ``` 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. diff --git a/doc/python/hover-text-and-formatting.md b/doc/python/hover-text-and-formatting.md index d99e8914908..01c7587d3d4 100644 --- a/doc/python/hover-text-and-formatting.md +++ b/doc/python/hover-text-and-formatting.md @@ -313,7 +313,7 @@ for continent_name, continent in continent_data.items(): x=continent['gdpPercap'], y=continent['lifeExp'], name=continent_name, - text=df_2007['continent'], + text=continent['continent'], hovertemplate= "<b>%{text}</b><br><br>" + "GDP per Capita: %{x:$,.0f}<br>" + diff --git a/doc/python/legend.md b/doc/python/legend.md index da1fbc2323d..37db5613b82 100644 --- a/doc/python/legend.md +++ b/doc/python/legend.md @@ -99,7 +99,7 @@ fig.show() *New in v5.0* -The `legendrank` attribute of a trace can be used to control its placement within the legend, without regard for its placement in the `data` list. +The `legendrank` attribute of a trace can be used to control its placement within the legend, without regard for its placement in the `data` list. The default `legendrank` for traces is 1000 and ties are broken as described above, meaning that any trace can be pulled up to the top if it is the only one with a legend rank less than 1000 and pushed to the bottom if it is the only one with a rank greater than 1000. @@ -447,6 +447,8 @@ fig.show() #### Group click toggle behavior +*New in v5.3* + You can also define the toggle behavior for when a user clicks an item in a group. Here we set the `groupclick` for the `legend` to `toggleitem`. This toggles the visibility of just the item clicked on by the user. Set to `togglegroup` and it toggles the visibility of all items in the same group as the item clicked on. ```python diff --git a/doc/python/line-and-scatter.md b/doc/python/line-and-scatter.md index d654991d3ce..a0a916d8e30 100644 --- a/doc/python/line-and-scatter.md +++ b/doc/python/line-and-scatter.md @@ -100,7 +100,7 @@ IFrame(snippet_url + 'line-and-scatter', width='100%', height=1200) ### Scatter plots and Categorical Axes -Scatters plots can be made on using any type of cartesian axis, including [linear](https://plotly.com/python/axes/), [logarithmic](https://plotly.com/python/log-plot/), [categorical](https://plotly.com/python/categorical-axes/) or [date](https://plotly.com/python/time-series/) axes. +Scatter plots can be made using any type of cartesian axis, including [linear](https://plotly.com/python/axes/), [logarithmic](https://plotly.com/python/log-plot/), [categorical](https://plotly.com/python/categorical-axes/) or [date](https://plotly.com/python/time-series/) axes. Scatter plots where one axis is categorical are often known as [dot plots](https://plotly.com/python/dot-plots/). diff --git a/doc/python/log-plot.md b/doc/python/log-plot.md index 83f993d4220..27d19febd1b 100644 --- a/doc/python/log-plot.md +++ b/doc/python/log-plot.md @@ -20,7 +20,7 @@ jupyter: name: python nbconvert_exporter: python pygments_lexer: ipython3 - version: 3.9.0 + version: 3.9.7 plotly: description: How to make Log plots in Python with Plotly. display_as: scientific @@ -64,7 +64,7 @@ fig.show() _new in 5.8_ -You can position and style minor ticks using `minor`. This takes a `dict` of properties to apply to minor ticks. Available properties include: `tickmode`, `tickvals`, `tickcolor`, `ticklen`, `tickwidth`, `dtick`, `tick0`, `nticks`, `ticks`, `showgrid`, `gridcolor`, `griddash`, and `gridwidth`. +You can position and style minor ticks using `minor`. This takes a `dict` of properties to apply to minor ticks. See the [figure reference](https://plotly.com/python/reference/layout/xaxis/#layout-xaxis-minor) for full details on the accepted keys in this dict. In this example we set the tick length with `ticklen`, add the ticks on the inside with `ticks="inside"`, and turn grid lines on with `howgrid=True`. @@ -75,7 +75,7 @@ df = px.data.gapminder().query("year == 2007") fig = px.scatter(df, x="gdpPercap", y="lifeExp", hover_name="country", log_x=True, range_x=[1,100000], range_y=[0,100]) -fig.update_xaxes(minor=dict(ticks="inside", ticklen=6, showgrid=True))# {"ticks": "inside", "ticklen": 6, "showgrid": True}) +fig.update_xaxes(minor=dict(ticks="inside", ticklen=6, showgrid=True)) fig.show() ``` diff --git a/doc/python/smith-charts.md b/doc/python/smith-charts.md index d5982e86cd8..38c247097f8 100644 --- a/doc/python/smith-charts.md +++ b/doc/python/smith-charts.md @@ -33,6 +33,8 @@ jupyter: thumbnail: thumbnail/contourcarpet.jpg --- +*New in v5.4* + A [Smith Chart](https://en.wikipedia.org/wiki/Smith_chart) is a specialized chart for visualizing [complex numbers](https://en.wikipedia.org/wiki/Complex_number): numbers with both a real and imaginary part. @@ -53,7 +55,7 @@ import plotly.graph_objects as go fig = go.Figure() fig.add_trace(go.Scattersmith( - imag=[1], + imag=[1], real=[1], marker_symbol='x', marker_size=30, @@ -62,7 +64,7 @@ fig.add_trace(go.Scattersmith( )) fig.add_trace(go.Scattersmith( - imag=[1], + imag=[1], real=[1], marker_symbol='x', marker_size=30, diff --git a/doc/python/time-series.md b/doc/python/time-series.md index df9e2b33bd2..bfd4d61a02f 100644 --- a/doc/python/time-series.md +++ b/doc/python/time-series.md @@ -20,7 +20,7 @@ jupyter: name: python nbconvert_exporter: python pygments_lexer: ipython3 - version: 3.9.0 + version: 3.9.7 plotly: description: How to plot date and time in python. display_as: financial @@ -139,9 +139,9 @@ fig.show() _new in 5.8_ -You can add minor ticks to an axis with `minor`. This takes a `dict` of properties to apply to minor ticks. Available properties include: `tickmode`, `tickvals`, `tickcolor`, `ticklen`, `tickwidth`, `dtick`, `tick0`, `nticks`, `ticks`, `showgrid`, `gridcolor`, `griddash`, and `gridwidth`. +You can add minor ticks to an axis with `minor`. This takes a `dict` of properties to apply to minor ticks. See the [figure reference](https://plotly.com/python/reference/layout/xaxis/#layout-xaxis-minor) for full details on the accepted keys in this dict. -In this example, we've added minor ticks to the inside of the x-axis and turned on grid lines. +In this example, we've added minor ticks to the inside of the x-axis and turned on minor grid lines. ```python import pandas as pd @@ -159,7 +159,7 @@ fig.show() _new in 5.8_ -You can set `dtick` on `minor` to control the spacing for minor ticks and grid lines. In the following example, by setting `dtick=7*24*3.6e6` (the number of milliseconds in a week) and setting `tick0="2016-07-04"` (the first Monday in our data), a minor tick and grid line is displayed for the start of each week. When zoomed out, we can see where each month and week begins and ends. +You can set `dtick` on `minor` to control the spacing for minor ticks and grid lines. In the following example, by setting `dtick=7*24*60*60*1000` (the number of milliseconds in a week) and setting `tick0="2016-07-03"` (the first Sunday in our data), a minor tick and grid line is displayed for the start of each week. When zoomed out, we can see where each month and week begins and ends. ```python import pandas as pd @@ -169,7 +169,17 @@ df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/finan df = df.loc[(df["Date"] >= "2016-07-01") & (df["Date"] <= "2016-12-01")] fig = px.line(df, x='Date', y='AAPL.High') -fig.update_xaxes(ticks= "outside", ticklabelmode= "period", tickcolor= "black", tickwidth=2, ticklen=10, minor=dict(ticks="outside", dtick=7*24*3.6e6, tick0="2016-07-04", griddash='dot', gridcolor='pink')) +fig.update_xaxes(ticks= "outside", + ticklabelmode= "period", + tickcolor= "black", + ticklen=10, + minor=dict( + ticklen=4, + dtick=7*24*60*60*1000, + tick0="2016-07-03", + griddash='dot', + gridcolor='white') + ) fig.show() ``` diff --git a/doc/requirements.txt b/doc/requirements.txt index a5856316a86..f77ad40740a 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -1,4 +1,4 @@ -plotly==5.7.0 +plotly==5.8.1 jupytext==1.1.1 jupyter-client<7 jupyter diff --git a/packages/javascript/jupyterlab-plotly/package-lock.json b/packages/javascript/jupyterlab-plotly/package-lock.json index 74a93e86d42..14f0a0d056b 100644 --- a/packages/javascript/jupyterlab-plotly/package-lock.json +++ b/packages/javascript/jupyterlab-plotly/package-lock.json @@ -1,6 +1,6 @@ { "name": "jupyterlab-plotly", - "version": "5.8.0", + "version": "5.8.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/javascript/jupyterlab-plotly/package.json b/packages/javascript/jupyterlab-plotly/package.json index 69e3a3c01c6..235703f0c7e 100644 --- a/packages/javascript/jupyterlab-plotly/package.json +++ b/packages/javascript/jupyterlab-plotly/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab-plotly", - "version": "5.8.0", + "version": "5.8.2", "description": "The plotly Jupyter extension", "author": "The plotly.py team", "license": "MIT", diff --git a/packages/python/plotly/plotly/_widget_version.py b/packages/python/plotly/plotly/_widget_version.py index 1cee3831be8..591a8c7b694 100644 --- a/packages/python/plotly/plotly/_widget_version.py +++ b/packages/python/plotly/plotly/_widget_version.py @@ -2,4 +2,4 @@ # for automated dev builds # # It is edited by hand prior to official releases -__frontend_version__ = "^5.8.0" +__frontend_version__ = "^5.8.2" diff --git a/packages/python/plotly/plotly/io/_html.py b/packages/python/plotly/plotly/io/_html.py index b6f61facc5a..606df721f33 100644 --- a/packages/python/plotly/plotly/io/_html.py +++ b/packages/python/plotly/plotly/io/_html.py @@ -20,7 +20,7 @@ _mathjax_config = """\ <script type="text/javascript">\ -if (window.MathJax && window.MathJax.Hub && && window.MathJax.Hub.Config) {window.MathJax.Hub.Config({SVG: {font: "STIX-Web"}});}\ +if (window.MathJax && window.MathJax.Hub && window.MathJax.Hub.Config) {window.MathJax.Hub.Config({SVG: {font: "STIX-Web"}});}\ </script>""" diff --git a/release.md b/release.md index 07df8b0a0e7..396b94ddb9e 100644 --- a/release.md +++ b/release.md @@ -29,8 +29,9 @@ a link to the plotly.js CHANGELOG. ### Finalize versions -Manually update the versions to `X.Y.Z` in the files -specified below. +**Create a branch `git checkout -b release-X.Y.Z`.** + +Manually update the versions to `X.Y.Z` in the files specified below. - `CHANGELOG.md` + update the release date @@ -40,93 +41,84 @@ specified below. + Update `__frontend_version__` to `^X.Y.Z` (Note the `^` prefix) - `packages/javascript/jupyterlab-plotly/package.json` + Update `"version"` to `X.Y.Z` - + Ensure you're using `node` version 12 and `npm` version 6 to minimize diffs to `package-lock.json` - + Ensure you're in a Python virtual environment with JupyterLab 3 installed - + Run `rm -rf node_modules && npm install && npm run clean && npm run build:prod` - - Run `git diff` and ensure that only the files you modified and the build artifacts have changed - - Ensure that the diff in `package-lock.json` seems sane - - Commit and tag but *don't push* until after everything is available on NPM/PyPI/Conda (see below): - + `git commit -a -m "release vX.Y.Z"` - + `git tag vX.Y.Z` + - `packages/javascript/jupyterlab-plotly/package-lock.json` + + Update `"version"` to `X.Y.Z` + - Commit your changes on the branch: + + `git commit -a -m "version changes for vX.Y.Z"` + ### Triggering (and Retriggering) the build -### Publishing to PyPI + - Commit and add this specific tag which `versioneer` will pick up, and push to Github so that CI will build the release artifacts. This is an atomic push so that CI will read the tag on the commit: + + `git tag vX.Y.Z` + + `git push --atomic origin release-X.Y.Z vX.Y.Z` + - Create a Github pull request from `release-X.Y.Z` to `master` and wait for CI to be green + - *If something goes wrong below*, you'll need to trigger the build process again after a fix. You'll need to commit your changes in the release branch, move the tag and atomically force push: + + `git commit ....` + + `git tag -f vX.Y.Z` + + `git push --force --atomic origin release-X.Y.Z vX.Y.Z` -Build and publish the final version to PyPI. +### Download and QA CI Artifacts -> NOTE: for some reason, this produces a broken build if `npm run build:prod` isn't ' -> run once before in the `jupyterlab-plotly` directory so don't skip that step above! +The `full_build` job in the `release_build` workflow in CircleCI produces three sets of artifacts. Download all three: -```bash -(plotly_dev) $ git status # make sure it's not dirty! -(plotly_dev) $ cd packages/python/plotly -(plotly_dev) $ rm -rf dist -(plotly_dev) $ python setup.py sdist bdist_wheel -(plotly_dev) $ rm -f dist/*dirty* # make sure your version is not dirty! -``` +1. `pypi_dist/all.tgz` +2. `conda_dist/plotly-X.Y.Z.tar.bz2` +3. `npm_dist/jupyterlab-plotly-X.Y.Z.tgz` -Here you should do some local QA: +**Note: if any of the version numbers are not simply `X.Y.Z` but include some kind of git hash, then this is a dirty build and you'll need to clean up whatever is dirtying the tree and follow the instructions above to trigger the build again.** (That said, you can do QA on dirty builds, you just can't publish them.) -```bash -(plotly_dev) $ pip uninstall plotly -(plotly_dev) $ pip install dist/plotly-X.Y.X-py2.py3-none-any.whl -``` +To locally install the PyPI dist, make sure you have an environment with JupyterLab 3 installed: -Once you're satisfied that things render in Lab and Notebook in Widget and regular mode, -you can upload to PyPI. +- `tar xzf all.tgz` +- `pip uninstall plotly` +- `conda uninstall plotly` (just in case!) +- `pip install dist/plotly-X.Y.X-py2.py3-none-any.whl` -```bash -(plotly_dev) $ twine upload dist/plotly-X.Y.Z* -``` +To locally install the Conda dist (generally do this in a different, clean environment from the one above!): +- `conda uninstally plotly` +- `pip uninstall plotly` (just in case!) +- `conda install conda_dist/plotly-X.Y.Z.tar.bz2` -After it has uploaded, move to another environment and double+triple check that you are able to upgrade ok: -```bash -$ pip install plotly --upgrade -``` +It's more complicated to locally install the NPM bundle, as you'll need to have a JupyterLab 2 environment installed... Undocumented for now :see_no_evil:. -And ask one of your friends to do it too. Our tests should catch any issues, but you never know. +You'll want to check, in both Lab and Notebook, **in a brand new notebook in each** so that there is no caching of previous results, that `go.Figure()` and `go.FigureWidget()` work without error. -### Publish JS Extensions to NPM +If something is broken, you'll need to fix it and trigger the build again (see above section). -Build and publish the final version of the extensions to NPM. We do this right away because -once we push to PyPI the README will refer to these versions. +### Publishing + +Once you're satisfied that things render in Lab and Notebook in Widget and regular mode, +you can publish the artifacts. **You will need special credentials from Plotly leadership to do this.**. -> NOTE: this assumes the extension is already built above so don't skip that step above! +Publishing to PyPI: ```bash -cd packages/javascript/jupyterlab-plotly -npm publish --access public +(plotly_dev) $ cd pypi_dist/dist +(plotly_dev) $ twine upload plotly-X.Y.Z* ``` -### Publishing to the plotly conda channel - -To publish package to the plotly anaconda channel you'll need to have the -anaconda or miniconda distribution installed, and you'll need to have the -`anaconda-client` package installed. +Publishing to NPM: ```bash -(plotly_dev) $ conda config --set anaconda_upload no -(plotly_dev) $ conda build recipe/ +(plotly_dev) $ cd npm_dist +(plotly_dev) $ npm publish jupyterlab-plotly-X.Y.Z.tgz ``` -Then upload artifacts to the anaconda channel by running the upload command that `conda` -provides, which looks something like this: +Publishing to `plotly` conda channel (make sure you have run `conda install anaconda-client` to get the `anaconda` command): ``` -$ anaconda upload /path/to/anaconda3/conda-bld/noarch/plotly-*.tar.bz2 +(plotly_dev) $ cd conda_dist +(plotly_dev) $ anaconda upload plotly-X.Y.Z.tar.bz2 ``` -### Push the commit and add GitHub Release entry -```bash -(plotly_dev) $ git push origin master -(plotly_dev) $ git push origin vX.Y.Z -``` +### Merge the PR and make a Release -1. Go to https://github.com/plotly/plotly.py/releases and "Draft a new release" -2. Enter the `vX.Y.Z` tag you created already above and make "Release title" the same string as the tag. -3. Copy the changelog section for this version as the "Describe this release" +1. Merge the pull request you created above into `master` +2. Go to https://github.com/plotly/plotly.py/releases and "Draft a new release" +3. Enter the `vX.Y.Z` tag you created already above and make "Release title" the same string as the tag. +4. Copy the changelog section for this version as the "Describe this release" ### Update documentation site @@ -151,124 +143,36 @@ to features in the release. * Update the Github Release entry and CHANGELOG entry to have the nice title and a link to the announcement * Follow up on issues resolved in this release or forum posts with better answers as of this release -## Release *Candidate* process - `plotly` package - - -### Bump to release candidate version - - 1) Manually update the versions to `X.Y.Z-rc.1` in the files -specified below. - - - `packages/python/plotly/plotly/_widget_version.py`: - + Update `__frontend_version__` to `^X.Y.Z-rc.1` (Note the `^` prefix) - - `packages/javascript/jupyterlab-plotly/package.json` - + Update `"version"` to `X.Y.Z-rc.1` - + Ensure you're using `node` version 12 and `npm` version 6 to minimize diffs to `package-lock.json` - + Ensure you're in a Python virtual environment with JupyterLab 3 installed - + Run `rm -rf node_modules && npm install && npm run build:prod` - - 2) Commit the changes - - 3) Tag this commit on the release branch as `vX.Y.Zrc1` - -In both cases `rc` is the semantic versioning code for Release Candidate. +## Release *Candidate* process - `plotly` package and extensions -The number 1 means that this is the first release candidate, this number can -be incremented if we need to publish multiple release candidates. -Note that the `npm` suffix is `-rc.1` and the PyPI suffix is `rc1`. +(rough notes for a rough/ad hoc process!) -Publishing `plotly.py` and `jupyterlab-plotly` as release candidates -allows us to go through the publication process, and test that the -installed packages work properly before general users will get them by -default. It also gives us the opportunity to ask specific users to test -that their bug reports are in fact resolved before we pull the trigger -on the official release. +It's the same process as above except that the `X.Y.Z` version has a suffix and there are special instructions below for publishing an RC: note that the `npm` suffix is `-rc.1` and the PyPI suffix is `rc1`. We also don't update the docs with RC information and we inform a limited number of stakeholders. -### Publish release candidate to PyPI - -To upload to PyPI you'll also need to have `twine` installed: -```bash -(plotly_dev) $ pip install twine -``` - -And, you'll need to be a maintainer on PyPI. Then, from inside the repository: - -```bash -(plotly_dev) $ cd packages/python/plotly -(plotly_dev) $ git checkout release_X.Y.Z -(plotly_dev) $ git stash -(plotly_dev) $ rm -rf dist -(plotly_dev) $ python setup.py sdist bdist_wheel -(plotly_dev) $ rm -f dist/*dirty* # make sure your version is not dirty! -``` - -Here you should do some local QA: - -```bash -(plotly_dev) $ pip uninstall plotly -(plotly_dev) $ pip install dist/plotly-vX.Y.Zrc1-py2.py3-none-any.whl -``` - -Once you're satisfied that things render in Lab and Notebook in Widget and regular mode, -you can upload to PyPI. +PyPI RC (no special flags, just the `rc1` suffix): ```bash (plotly_dev) $ twine upload dist/plotly-X.Y.Zrc1* ``` -### Publish release candidate of JS Extensions to NPM - -Now, publish the release candidate of the extensions to NPM. +NPM RC: ```bash -cd ./packages/javascript/jupyterlab-plotly -npm publish --access public --tag next +npm publish --access public --tag next jupyterlab-plotly.* ``` The `--tag next` part ensures that users won't install this version unless they explicitly ask for the version or for the version with the `next` tag. -### Publish release candidate to plotly anaconda channel - -To publish package to the plotly anaconda channel you'll need to have the -anaconda or miniconda distribution installed, and you'll need to have the -`anaconda-client` package installed. - -```bash -(plotly_dev) $ conda config --set anaconda_upload no -(plotly_dev) $ conda build recipe/ -``` - -Next run `anaconda login` and enter the credentials for the plotly anaconda -channel. - -Then upload artifacts to the anaconda channel using the test label. Using the test -label will ensure that people will only download the release candidate version -if they explicitly request it. +Conda RC: ``` -$ anaconda upload --label test /path/to/anaconda3/conda-bld/noarch/plotly-*.tar.bz2 +$ anaconda upload --label test plotly-*.tar.bz2 ``` -Then logout with `anaconda logout` - -### Manually test the release candidate - -Create a fresh virtual environment (or conda environment) and install -the release candidate by following the new `README.md` instructions -(the instructions updated above to include the release candidate versions) - -Run through the example notebooks at -https://github.com/jonmmease/plotly_ipywidget_notebooks using the classic -notebook and JupyterLab. Make sure `FigureWidget` objects are displayed as -plotly figures, and make sure the in-place updates and callbacks work. - -If appropriate, ask users who have submitted bug reports or feature -requests that are resolved in this version to try out the release candidate. +The `--label test` part ensures that users won't install this version unless +they explicitly ask for the version or for the version with the `next` tag. -If problems are found in the release candidate, fix them on the release -branch and then publish another release candidate with the candidate number -incremented. ## Release process - `plotly-geo` package