File tree Expand file tree Collapse file tree 1 file changed +32
-4
lines changed Expand file tree Collapse file tree 1 file changed +32
-4
lines changed Original file line number Diff line number Diff line change @@ -333,8 +333,36 @@ Remove tests dependency on `ipython_genutils`
333333-----
334334First public release!
335335
336- Release
337- =======
336+ </br>
337+ </br>
338+
339+ Making a new release of jupyter_nbextensions_configurator
340+ =========================================================
341+ 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+ ` ` `
338364
339- python setup.py bdist_wheel
340- twine upload dist/*
365+ Then to upload the package to PyPI, do :
366+ ` ` ` bash
367+ twine upload dist/*
368+ ` ` `
You can’t perform that action at this time.
0 commit comments