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
This extension can be manually distributed as a Python package.
342
+
343
+
</br>
344
+
345
+
Manually bumb the package version in:
346
+
* `version` and `download_url` in `setup.py`
347
+
* `current_version` in `.bumpversion.cfg`
348
+
* `__version__` in `src/jupyter_nbextensions_configurator/__init__.py`
349
+
350
+
351
+
Update the Changes section of the this README with notes for the release.
352
+
353
+
To create the binary package (`.whl`) in the `dist/` directory, do:
354
+
```bash
355
+
python setup.py bdist_wheel
356
+
```
357
+
358
+
Commit the changes to the repository, and upload artifacts.
359
+
360
+
Install the necessary `twine` python package
361
+
```bash
362
+
pip install twine
363
+
```
364
+
365
+
Then to upload the package to PyPI, do:
366
+
```bash
367
+
twine upload dist/*
368
+
```
338
369
339
-
python setup.py bdist_wheel
340
-
twine upload dist/*
370
+
Lastly, you can follow the instructions [here](https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository)
371
+
to make a manual release on Github via [`jupyter_nbextensions_configurator/releases`](https://github.com/jupyter-contrib/jupyter_nbextensions_configurator/releases).
0 commit comments