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
2. Update the version numbers in the following files (see https://github.com/jupyter-widgets/ipyleaflet/commit/48f3cb68cd07e6c4ae7b353a17861e4e51ca4471)
8
+
-`ipyleaflet/_version.py` (two places)
9
+
-`js/package.json`
10
+
-`environment.yml`
11
+
3. Make sure the changelog is updated: `CHANGELOG.md`
12
+
4. Build and publish to npm (if yarn prompts for the new version, I give the same as what is already in the `package.json`)
13
+
```sh
14
+
cd js
15
+
yarn install && yarn run build && yarn publish
16
+
cd ..
17
+
```
18
+
5. Build and publish Python package
19
+
```sh
20
+
python -m build
21
+
twine upload dist/*
22
+
```
23
+
6. Update environment environment config with new ipyleaflet pypi download link: `docs/jupyterlite_config.json`
0 commit comments