The chart-studio
package contains the utilities for interacting with
Chart Studio (both Cloud or On-Prem).
Update the version of the chart-studio
package in
setup.py
.
This version is not intended to match the version of plotly.py.
Add a new entry to the CHANGELOG at CHANGELOG.md
and commit the changes.
Create a new tag for the release
(plotly_dev) $ git checkout main
(plotly_dev) $ git stash
(plotly_dev) $ git pull origin main
(plotly_dev) $ git tag vX.Y.Z
(plotly_dev) $ git push origin vX.Y.Z
Publish the final version to PyPI
(plotly_dev) $ python setup.py sdist bdist_wheel
(plotly_dev) $ twine upload dist/chart_studio-X.Y.Z.tar.gz
(plotly_dev) $ twine upload dist/chart_studio-X.Y.Z-py3-none-any.whl
From packages/python/plotly-geo
, build the conda package
(plotly_dev) $ conda build recipe/
Then upload to the plotly anaconda channel as described above.