Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/docs-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
# * the version picker injected into every doc page
# * doc/contributing/10_release_process.md - tells the releaser to edit this file
#
# To add a new release version: append an entry under `versions:`, and update
# `default:` / `stable:` if the new release should become the landing page.
# To add a new release version: insert an entry at the top of `versions:`, immediately
# after `latest`, and update `default:` / `stable:` if the new release should become the
# landing page. The picker renders this list in file order, so the newest release goes first.

default: "1.0.1" # served at the site root (microsoft.github.io/PyRIT/)
stable: "1.0.1" # served at /stable/ and shown as "(stable)" in the picker
Expand Down
3 changes: 2 additions & 1 deletion build_scripts/prepare_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,8 @@ def main() -> int:
print("=" * 60)
print("\nNext steps:")
print(" 1. Build the Python package: python -m build")
print(" 2. Upload to PyPI: python -m twine upload dist/*")
print(" 2. Upload to PyPI by explicit filename, e.g.:")
print(" python -m twine upload dist/pyrit-x.y.z-py3-none-any.whl dist/pyrit-x.y.z.tar.gz")
return 0


Expand Down
Loading