We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6572ad6 commit fc6c390Copy full SHA for fc6c390
bin/release
@@ -36,7 +36,7 @@ python setup.py sdist bdist_wheel --universal
36
git add $VERSION_FILE CHANGES.md
37
git commit -m "Release $VERSION"
38
git tag -f v$VERSION
39
-git push --tags origin master
+git push --tags origin main
40
41
read -p "Press any key to submit to PyPI or Ctrl-C to abort..." -n1 -s
42
twine upload dist/*
@@ -45,5 +45,5 @@ NEW_VERSION="${VERSION%.*}.$((${VERSION##*.}+1))dev"
45
sed -i "" "s/^__version__ = '.*'$/__version__ = '$NEW_VERSION'/" $VERSION_FILE
46
git add $VERSION_FILE
47
git commit -m "Version $NEW_VERSION"
48
-git push origin master
+git push origin main
49
echo "Development is now open on version $NEW_VERSION!"
0 commit comments