Commit d1674504 authored by Yuanle Song's avatar Yuanle Song
Browse files

update release notes on PyPI

parent 8e3648de
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -29,11 +29,17 @@ Time-stamp: <2024-04-08>
  wheel will be built in pypi/rd-api/dist, pypi/rd-client/dist dir.

- release binary on PyPI
  export TWINE_PASSWORD=xxx

  export RD_API_TWINE_TOKEN=xxx
  export RD_CLIENT_TWINE_TOKEN=xxx
  make all -C pypi

  To release only the server or client:
  To release only the server:
  export RD_API_TWINE_TOKEN=xxx
  make api -C pypi

  To release only the client:
  export RD_CLIENT_TWINE_TOKEN=xxx
  make client -C pypi

- problems
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ dist: bootstrap
	python3 setup.py -q bdist_wheel --universal
	~/.local/bin/twine check --strict dist/*
upload: dist
	~/.local/bin/twine upload dist/*
	~/.local/bin/twine upload -u __token__ -p $(RD_API_TWINE_TOKEN) dist/*
testupload: dist
	env TWINE_PASSWORD=XVgnIVGGFjlMRxDV ~/.local/bin/twine upload --repository-url https://test.pypi.org/legacy/ dist/*
install: dist
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ dist: bootstrap
	python3 setup.py -q bdist_wheel --universal
	~/.local/bin/twine check --strict dist/*
upload: dist
	~/.local/bin/twine upload dist/*
	~/.local/bin/twine upload -u __token__ -p $(RD_CLIENT_TWINE_TOKEN) dist/*
testupload: dist
	env TWINE_PASSWORD=XVgnIVGGFjlMRxDV ~/.local/bin/twine upload --repository-url https://test.pypi.org/legacy/ dist/*
install: dist