You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- 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:
47
47
+`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`
50
48
51
-
### Download and check CI Artifacts
49
+
### Triggering (and Retriggering) the build
52
50
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:
The `full_build` job in the `release_build` workflow in CircleCI produces three sets of artifacts. Download all three:
58
63
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`
61
67
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.)
69
69
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:
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!):
79
78
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`
83
82
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:.
84
84
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.
89
86
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).
91
88
92
-
### Publish JS Extensions to NPM
89
+
### Publishing
93
90
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.**.
96
93
97
-
> NOTE: this assumes the extension is already built above so don't skip that step above!
98
94
95
+
Publishing to PyPI:
99
96
```bash
100
-
cdpackages/javascript/jupyterlab-plotly
101
-
npm publish --access public
97
+
(plotly_dev) $ cdpypi_dist/dist
98
+
(plotly_dev) $ twine upload plotly-X.Y.Z*
102
99
```
103
100
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:
109
102
110
103
```bash
111
-
(plotly_dev) $ conda config --set anaconda_upload no
+ 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
180
147
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!)
187
149
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.
189
151
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!
0 commit comments