Skip to content

Commit

Permalink
Add maintainer requirements and document the basic release flow
Browse files Browse the repository at this point in the history
  • Loading branch information
linknum23 committed Jan 9, 2025
1 parent 137ca70 commit a55e7b3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
13 changes: 13 additions & 0 deletions NEW_RELEASE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Making a new pyamplipi release

```bash
# build the latest
python -m build

# upload to pypi test (go to the pypi test website and make sure everything looks right)
twine upload -r testpypi dist/pyamplipi-${VERSION}*

# upload to pypi
twine upload dist/pyamplipi-${VERSION}*

```
2 changes: 2 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
build
flake8>=6.0.0
mypy>=0.991
sphinx>=5.3.0
Expand All @@ -6,3 +7,4 @@ myst-parser>=1.0.0
types-PyYAML
types-requests
types-tabulate
twine

0 comments on commit a55e7b3

Please sign in to comment.