1 Star 0 Fork 5

jone/ydpic

forked from prehisle/ydpic 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
inc_ver.py 599 Bytes
一键复制 编辑 原始数据 按行查看 历史
prehisle 提交于 2020-05-05 22:21 . feat: v0.2.22 200505
import re
from prutils.pr_string import get_re_first_subs
from prutils.pr_utils import read_file, write_file
def file_replace_str(file_path, pattern, repl, flags=0):
text = read_file(file_path, "rb").decode("utf-8")
text = re.sub(pattern, repl, text, 0, flags)
write_file(file_path, text.encode("utf-8"), "wb")
config_text = read_file("config.py", "rb").decode("utf-8")
v1, v2, v3 = get_re_first_subs(r"version='(\d+)\.(\d+)\.(\d+)'", config_text)
v3 = str(int(v3) + 1)
new_ver = "version='%s.%s.%s'" % (v1, v2, v3)
file_replace_str("config.py", r"version='\d+\.\d+\.\d+'", new_ver)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/baidushanxii/ydpic.git
git@gitee.com:baidushanxii/ydpic.git
baidushanxii
ydpic
ydpic
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385