We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38620ea commit e35e18fCopy full SHA for e35e18f
README.md
@@ -109,11 +109,15 @@ If you make a change to the python code then you will need to restart the notebo
109
npm login
110
npm publish
111
```
112
-- Bundle the python package: `python setup.py sdist bdist_wheel`
113
-- Publish the package to PyPI:
+- Install publish dependencies:
+```bash
114
+pip install build twine
115
+```
116
+- Build the assets and publish
117
```bash
- pip install twine
- twine upload dist/<python package name>*
118
+ python -m build .
119
+ twine check dist/*
120
+ twine upload dist/*
121
122
- Tag the release commit (`git tag <python package version identifier>`)
123
- Update the version in `_version.py`, and put it back to dev (e.g. 0.1.0 -> 0.2.0.dev).
0 commit comments