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
Lerna will prompt you for version numbers for each of the changed npm packages in the version step. Lerna will then change the versions appropriately (including the interdependency versions), commit, and tag. The `yarn publish` step then publishes the public packages that were versioned to npm.
57
57
58
+
## Configure twine username
59
+
60
+
If you have 2FA on, make sure you have your `~/.pypirc` file set to:
61
+
```
62
+
[pypi]
63
+
username = __token__
64
+
```
65
+
Or set the environment variable
66
+
```
67
+
export TWINE_USERNAME=__token__
68
+
```
69
+
58
70
## `jupyterlab_widgets`
59
71
60
72
Go into the `python/jupyterlab_widgets` directory. Change `jupyterlab_widgets/_version.py` to reflect the new version number.
@@ -125,10 +137,10 @@ Commit the changes you've made above, and include the uploaded files hashes in t
0 commit comments