mirror of
https://github.com/2061360308/NeteaseCloudMusic_PythonSDK.git
synced 2024-11-21 22:48:03 +00:00
15 lines
356 B
Python
15 lines
356 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'])
|
|
|
|
if not os.path.isdir('./newsfragments'):
|
|
os.mkdir('./newsfragments') |