chore:add publish.py

This commit is contained in:
2061360308 2023-12-20 01:10:25 +08:00
parent 26d823031b
commit 6089caa183
4 changed files with 23 additions and 7 deletions

View File

@ -50,7 +50,7 @@ print(api_list())
├── test.py 手动测试/ 使用示例
```
### 更新
#### 更新
项目使用towncrier自动生成更新日志
在 newsfragments 目录下,创建一个新的文本文件。这个文件的名字应该是一个唯一的编号,后缀是 .rst。
@ -66,7 +66,11 @@ print(api_list())
在这个文件中,写下你的更改的描述。这个描述应该是简短的,通常只有一到两句话。
例如`Added support for the XYZ feature.`
### 发布新版本
#### 发布新版本
自动:
运行 python publish.py
手动:
使用bumpversion自动更新版本号提交并发布标签
你需要安装bumpversion然后执行
```bash

View File

@ -50,7 +50,7 @@ with open(os.path.join(here, 'README.md'), 'w+', encoding='utf-8') as f:
print("copy README.md end")
try:
with io.open(os.path.join(here, 'CHANGELOG.md'), encoding='utf-8') as f:
with io.open(os.path.join(here, '../CHANGELOG.md'), encoding='utf-8') as f:
changelog = f.read()
except FileNotFoundError:
changelog = ''

12
publish.py Normal file
View File

@ -0,0 +1,12 @@
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'])

View File

@ -7,7 +7,7 @@ from enum import Enum
from pprint import pprint
import dotenv
from package.NeteaseCloudMusic import NeteaseCloudMusicApi, api_help, api_list
from NeteaseCloudMusic import NeteaseCloudMusicApi, api_help, api_list
# from NeteaseCloudMusic import NeteaseCloudMusicApi, api_help, api_list
@ -112,7 +112,7 @@ if __name__ == '__main__':
pass
# print(api_list())
# print(api_help())
song_url_v1_test()
# song_url_v1_test()
# top_mv_test()
# search_test()
# search_default_test()
@ -122,6 +122,6 @@ if __name__ == '__main__':
# top_playlist_highquality_test()
# captcha_sent_test()
# login_cellphone_test()
user_account_test()
# user_account_test()
# playlist_track_all_test()
# login_refresh()
login_refresh()