Skip to content

Commit d4c461a

Browse files
committedJun 8, 2022
update release instructions
1 parent 3e7a4e3 commit d4c461a

File tree

1 file changed

+55
-152
lines changed

1 file changed

+55
-152
lines changed
 

‎release.md

+55-152
Original file line numberDiff line numberDiff line change
@@ -43,92 +43,82 @@ Manually update the versions to `X.Y.Z` in the files specified below.
4343
+ Update `"version"` to `X.Y.Z`
4444
- `packages/javascript/jupyterlab-plotly/package-lock.json`
4545
+ Update `"version"` to `X.Y.Z`
46-
- Commit and add this specific tag which `versioneer` will pick up, and push to Github so that CI will build the release artifacts:
46+
- Commit your changes on the branch:
4747
+ `git commit -a -m "version changes for vX.Y.Z"`
48-
+ `git tag vX.Y.Z`
49-
+ `git push --atomic origin release-X.Y.Z vX.Y.Z`
5048

51-
### Download and check CI Artifacts
49+
### Triggering (and Retriggering) the build
5250

53-
<WIP>
51+
- 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:
52+
+ `git tag vX.Y.Z`
53+
+ `git push --atomic origin release-X.Y.Z vX.Y.Z`
54+
- Create a Github pull request from `release-X.Y.Z` to `master` and wait for CI to be green
55+
- *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:
56+
+ `git commit ....`
57+
+ `git tag -f vX.Y.Z`
58+
+ `git push --force --atomic origin release-X.Y.Z vX.Y.Z`
5459

55-
### Publishing to PyPI
60+
### Download and QA CI Artifacts
5661

57-
Build and publish the final version to PyPI.
62+
The `full_build` job in the `release_build` workflow in CircleCI produces three sets of artifacts. Download all three:
5863

59-
> NOTE: for some reason, this produces a broken build if `npm run build:prod` isn't '
60-
> run once before in the `jupyterlab-plotly` directory so don't skip that step above!
64+
1. `pypi_dist/all.tgz`
65+
2. `conda_dist/plotly-X.Y.Z.tar.bz2`
66+
3. `npm_dist/jupyterlab-plotly-X.Y.Z.tgz`
6167

62-
```bash
63-
(plotly_dev) $ git status # make sure it's not dirty!
64-
(plotly_dev) $ cd packages/python/plotly
65-
(plotly_dev) $ rm -rf dist
66-
(plotly_dev) $ python setup.py sdist bdist_wheel
67-
(plotly_dev) $ rm -f dist/*dirty* # make sure your version is not dirty!
68-
```
68+
**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.)
6969

70-
Here you should do some local QA:
70+
To locally install the PyPI dist, make sure you have an environment with JupyterLab 3 installed:
7171

72-
```bash
73-
(plotly_dev) $ pip uninstall plotly
74-
(plotly_dev) $ pip install dist/plotly-X.Y.X-py2.py3-none-any.whl
75-
```
72+
- `tar xzf all.tgz`
73+
- `pip uninstall plotly`
74+
- `conda uninstall plotly` (just in case!)
75+
- `pip install dist/plotly-X.Y.X-py2.py3-none-any.whl`
7676

77-
Once you're satisfied that things render in Lab and Notebook in Widget and regular mode,
78-
you can upload to PyPI.
77+
To locally install the Conda dist (generally do this in a different, clean environment from the one above!):
7978

80-
```bash
81-
(plotly_dev) $ twine upload dist/plotly-X.Y.Z*
82-
```
79+
- `conda uninstally plotly`
80+
- `pip uninstall plotly` (just in case!)
81+
- `conda install conda_dist/plotly-X.Y.Z.tar.bz2`
8382

83+
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:.
8484

85-
After it has uploaded, move to another environment and double+triple check that you are able to upgrade ok:
86-
```bash
87-
$ pip install plotly --upgrade
88-
```
85+
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.
8986

90-
And ask one of your friends to do it too. Our tests should catch any issues, but you never know.
87+
If something is broken, you'll need to fix it and trigger the build again (see above section).
9188

92-
### Publish JS Extensions to NPM
89+
### Publishing
9390

94-
Build and publish the final version of the extensions to NPM. We do this right away because
95-
once we push to PyPI the README will refer to these versions.
91+
Once you're satisfied that things render in Lab and Notebook in Widget and regular mode,
92+
you can publish the artifacts. **You will need special credentials from Plotly leadership to do this.**.
9693

97-
> NOTE: this assumes the extension is already built above so don't skip that step above!
9894

95+
Publishing to PyPI:
9996
```bash
100-
cd packages/javascript/jupyterlab-plotly
101-
npm publish --access public
97+
(plotly_dev) $ cd pypi_dist/dist
98+
(plotly_dev) $ twine upload plotly-X.Y.Z*
10299
```
103100

104-
### Publishing to the plotly conda channel
105-
106-
To publish package to the plotly anaconda channel you'll need to have the
107-
anaconda or miniconda distribution installed, and you'll need to have the
108-
`anaconda-client` package installed.
101+
Publishing to NPM:
109102

110103
```bash
111-
(plotly_dev) $ conda config --set anaconda_upload no
112-
(plotly_dev) $ conda build recipe/
104+
(plotly_dev) $ cd npm_dist
105+
(plotly_dev) $ npm publish jupyterlab-plotly-X.Y.Z.tgz
113106
```
114107

115-
Then upload artifacts to the anaconda channel by running the upload command that `conda`
116-
provides, which looks something like this:
108+
Publishing to `plotly` conda channel (make sure you have run `conda install anaconda-client` to get the `anaconda` command):
117109

118110
```
119-
$ anaconda upload /path/to/anaconda3/conda-bld/noarch/plotly-*.tar.bz2
111+
(plotly_dev) $ cd conda_dist
112+
(plotly_dev) $ anaconda upload plotly-X.Y.Z.tar.bz2
120113
```
121114

122-
### Push the commit and add GitHub Release entry
123115

124-
```bash
125-
(plotly_dev) $ git push origin master
126-
(plotly_dev) $ git push origin vX.Y.Z
127-
```
116+
### Merge the PR and make a Release
128117

129-
1. Go to https://github.com/plotly/plotly.py/releases and "Draft a new release"
130-
2. Enter the `vX.Y.Z` tag you created already above and make "Release title" the same string as the tag.
131-
3. Copy the changelog section for this version as the "Describe this release"
118+
1. Merge the pull request you created above into `master`
119+
2. Go to https://github.com/plotly/plotly.py/releases and "Draft a new release"
120+
3. Enter the `vX.Y.Z` tag you created already above and make "Release title" the same string as the tag.
121+
4. Copy the changelog section for this version as the "Describe this release"
132122

133123
### Update documentation site
134124

@@ -153,123 +143,36 @@ to features in the release.
153143
* Update the Github Release entry and CHANGELOG entry to have the nice title and a link to the announcement
154144
* Follow up on issues resolved in this release or forum posts with better answers as of this release
155145

156-
## Release *Candidate* process - `plotly` package
157-
158-
### Bump to release candidate version
159-
160-
1) Manually update the versions to `X.Y.Z-rc.1` in the files
161-
specified below.
162-
163-
- `packages/python/plotly/plotly/_widget_version.py`:
164-
+ Update `__frontend_version__` to `^X.Y.Z-rc.1` (Note the `^` prefix)
165-
- `packages/javascript/jupyterlab-plotly/package.json`
166-
+ Update `"version"` to `X.Y.Z-rc.1`
167-
+ Ensure you're using `node` version 12 and `npm` version 6 to minimize diffs to `package-lock.json`
168-
+ Ensure you're in a Python virtual environment with JupyterLab 3 installed
169-
+ Run `rm -rf node_modules && npm install && npm run build:prod`
170-
171-
2) Commit the changes
172-
173-
3) Tag this commit on the release branch as `vX.Y.Zrc1`
174-
175-
In both cases `rc` is the semantic versioning code for Release Candidate.
176-
177-
The number 1 means that this is the first release candidate, this number can
178-
be incremented if we need to publish multiple release candidates.
179-
Note that the `npm` suffix is `-rc.1` and the PyPI suffix is `rc1`.
146+
## Release *Candidate* process - `plotly` package and extensions
180147

181-
Publishing `plotly.py` and `jupyterlab-plotly` as release candidates
182-
allows us to go through the publication process, and test that the
183-
installed packages work properly before general users will get them by
184-
default. It also gives us the opportunity to ask specific users to test
185-
that their bug reports are in fact resolved before we pull the trigger
186-
on the official release.
148+
(rough notes for a rough/ad hoc process!)
187149

188-
### Publish release candidate to PyPI
150+
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.
189151

190-
To upload to PyPI you'll also need to have `twine` installed:
191-
```bash
192-
(plotly_dev) $ pip install twine
193-
```
194-
195-
And, you'll need to be a maintainer on PyPI. Then, from inside the repository:
196-
197-
```bash
198-
(plotly_dev) $ cd packages/python/plotly
199-
(plotly_dev) $ git checkout release_X.Y.Z
200-
(plotly_dev) $ git stash
201-
(plotly_dev) $ rm -rf dist
202-
(plotly_dev) $ python setup.py sdist bdist_wheel
203-
(plotly_dev) $ rm -f dist/*dirty* # make sure your version is not dirty!
204-
```
205-
206-
Here you should do some local QA:
207-
208-
```bash
209-
(plotly_dev) $ pip uninstall plotly
210-
(plotly_dev) $ pip install dist/plotly-vX.Y.Zrc1-py2.py3-none-any.whl
211-
```
212-
213-
Once you're satisfied that things render in Lab and Notebook in Widget and regular mode,
214-
you can upload to PyPI.
152+
PyPI RC (no special flags, just the `rc1` suffix):
215153

216154
```bash
217155
(plotly_dev) $ twine upload dist/plotly-X.Y.Zrc1*
218156
```
219157

220-
### Publish release candidate of JS Extensions to NPM
221-
222-
Now, publish the release candidate of the extensions to NPM.
158+
NPM RC:
223159

224160
```bash
225-
cd ./packages/javascript/jupyterlab-plotly
226-
npm publish --access public --tag next
161+
npm publish --access public --tag next jupyterlab-plotly.*
227162
```
228163

229164
The `--tag next` part ensures that users won't install this version unless
230165
they explicitly ask for the version or for the version with the `next` tag.
231166

232-
### Publish release candidate to plotly anaconda channel
233-
234-
To publish package to the plotly anaconda channel you'll need to have the
235-
anaconda or miniconda distribution installed, and you'll need to have the
236-
`anaconda-client` package installed.
167+
Conda RC:
237168

238-
```bash
239-
(plotly_dev) $ conda config --set anaconda_upload no
240-
(plotly_dev) $ conda build recipe/
241169
```
242-
243-
Next run `anaconda login` and enter the credentials for the plotly anaconda
244-
channel.
245-
246-
Then upload artifacts to the anaconda channel using the test label. Using the test
247-
label will ensure that people will only download the release candidate version
248-
if they explicitly request it.
249-
170+
$ anaconda upload --label test plotly-*.tar.bz2
250171
```
251-
$ anaconda upload --label test /path/to/anaconda3/conda-bld/noarch/plotly-*.tar.bz2
252-
```
253-
254-
Then logout with `anaconda logout`
255-
256-
### Manually test the release candidate
257172

258-
Create a fresh virtual environment (or conda environment) and install
259-
the release candidate by following the new `README.md` instructions
260-
(the instructions updated above to include the release candidate versions)
261-
262-
Run through the example notebooks at
263-
https://github.com/jonmmease/plotly_ipywidget_notebooks using the classic
264-
notebook and JupyterLab. Make sure `FigureWidget` objects are displayed as
265-
plotly figures, and make sure the in-place updates and callbacks work.
266-
267-
If appropriate, ask users who have submitted bug reports or feature
268-
requests that are resolved in this version to try out the release candidate.
173+
The `--label test` part ensures that users won't install this version unless
174+
they explicitly ask for the version or for the version with the `next` tag.
269175

270-
If problems are found in the release candidate, fix them on the release
271-
branch and then publish another release candidate with the candidate number
272-
incremented.
273176

274177
## Release process - `plotly-geo` package
275178

0 commit comments

Comments
 (0)
Please sign in to comment.