File: release

package info (click to toggle)
voluptuous-serialize 2.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 132 kB
  • sloc: python: 238; sh: 12; makefile: 5
file content (8 lines) | stat: -rwxr-xr-x 150 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
#!/bin/sh
# Pushes a new version to PyPi.

cd "$(dirname "$0")/.."

rm -rf dist
python3 setup.py sdist
python3 -m twine upload dist/* --skip-existing