mirror of
https://github.com/2061360308/NeteaseCloudMusic_PythonSDK.git
synced 2024-11-21 22:48:03 +00:00
12 lines
279 B
Python
12 lines
279 B
Python
|
import os
|
||
|
import subprocess
|
||
|
|
||
|
# Bump version
|
||
|
subprocess.check_call(['bumpversion', 'patch'])
|
||
|
|
||
|
# Push changes to remote
|
||
|
subprocess.check_call(['git', 'push'])
|
||
|
subprocess.check_call(['git', 'push', '--tags'])
|
||
|
|
||
|
# Run towncrier
|
||
|
subprocess.check_call(['towncrier', '--yes'])
|