diff --git a/README.md b/README.md index 73f5c89..87ef169 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ You can also directly download `m2w` from this repotory. The usage is exactly t You can specify version or resource when installing `m2w`: ```bash -pip install -i https://pypi.org/simple m2w==2.5.7 +pip install -i https://pypi.org/simple m2w==2.5.11 ``` Generally, the latest version of `m2w` is recommended. diff --git a/README.zh-CN.md b/README.zh-CN.md index 6ac8010..ca56584 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -68,7 +68,7 @@ pip install m2w 在安装 `m2w` 时,您可以指定版本或资源: ```bash -pip install -i https://pypi.org/simple m2w==2.5.7 +pip install -i https://pypi.org/simple m2w==2.5.11 ``` 通常建议使用最新版本的 `m2w`。 diff --git a/setup.py b/setup.py index 639cc46..52fdc39 100644 --- a/setup.py +++ b/setup.py @@ -19,11 +19,11 @@ + 输入"pip install twine"来安装twine工具。 必要时可更新工具包:pip install --upgrade twine setuptools wheel -+ 使用"python setup.py sdist"命令来生成项目的源代码包。 如果要测试该包,可运行类似命令: python setup.py sdist; pip install .\dist\m2w-2.5.10.tar.gz ++ 使用"python setup.py sdist"命令来生成项目的源代码包。 如果要测试该包,可运行类似命令: python setup.py sdist; pip install .\dist\m2w-2.5.11.tar.gz + 使用"python setup.py bdist_wheel"命令来生成项目的长描述。 -+ 先完成Github仓库的更新和加tag。最后再上传至PyPi。输入"twine upload dist/*2.5.10* --verbose"来上传项目的源代码包。 ++ 先完成Github仓库的更新和加tag。最后再上传至PyPi。输入"twine upload dist/*2.5.11* --verbose"来上传项目的源代码包。 + 在上传过程中,你需要输入你在PyPi上注册的用户名和密码。 @@ -45,7 +45,7 @@ """ -VERSION = "2.5.10" +VERSION = "2.5.11" with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read()