File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,15 @@ This assumes you also have installed `pytest-cov`.
12
12
13
13
## Releasing
14
14
15
- Cutting a release and updating to ` pypi ` requires the following steps:
15
+ Cutting a release and updating to ` pypi ` requires the following steps (from
16
+ [ here] ( https://packaging.python.org/tutorials/packaging-projects/ )] ):
16
17
18
+ * Make sure you have installed the following libraries:
19
+ * ` twine `
20
+ * ` setuptools `
21
+ * ` wheel `
17
22
* Make sure tests pass locally and on CI.
18
23
* Update the version on ` setup.py `
19
- * Run ` python setup.py sdist ` .
20
- * When connected to the internet, run ` python setup.py register ` to login on
21
- PyPi.
22
- * When ready to push up, run ` python setup.py sdist upload ` .
24
+ * Run ` python setup.py sdist bdist_wheel ` .
25
+ * When ready to push up, run ` twine upload dist/* ` .
23
26
You can’t perform that action at this time.
0 commit comments