You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

release.sh 172B

12345678910
  1. #!/bin/bash
  2. RELEASE_NUM=`./setup.py --version`
  3. # Push to PyPi
  4. ./setup.py sdist upload
  5. # Tag in Git
  6. git tag $RELEASE_NUM -m "Tagging release $RELEASE_NUM"
  7. git push --tags