Skip to content

Commit 08be184

Browse files
committed
update release procedure to use poetry publish --build
1 parent b541c97 commit 08be184

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/release_procedure.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@
77

88
```shell
99
rm dist/*
10-
poetry build
11-
twine upload dist/*
10+
poetry pubish --build # you will get prompted for your pypi username/password
1211
git commit -a -m "Version a.b.c.yymmdd"
1312
git push upstream main
1413
git tag va.b.c.yymmdd
1514
git push upstream --tags
1615
```
1716

1817
The conda bots will recognize that a new version has been uploaded to pypi, and generate a pull request sent to the maintainers to approve it.
18+
19+
Note - Changes will need to be made to use pypi API tokens in the near future.

0 commit comments

Comments
 (0)