访问当前修订号

发布于 2025-01-01 14:15:40 字数 134 浏览 0 评论 0原文

每次运行我的 Python 应用程序时,它都会创建一个日志。我想在该日志中包含已执行代码的修订号。我怎样才能做到这一点?

我使用 Python 3.2、Windows TortoiseHg 2.2.2 和 Mercurial 2.0.2。

Every time my Python application is run, it creates a log. I want to include in that log the revision number of the code that was executed. How can I do that?

I use Python 3.2, Windows TortoiseHg 2.2.2 with Mercurial 2.0.2.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

话少情深 2025-01-08 14:15:40

如果您使用 setuptools 分发应用程序/包,则可以使用 pkg_resources.get_distribution("my_package").version 在运行时访问已安装的包版本。但是 setuptools 不支持 Mercurial 修订版本的自动版本标记,因此您必须使用以下命令构建您的发行版:

python3 setup.py egg_info -b -$(hg heads --template "{node|short}" `hg branch`) sdist

python3 setup.py egg_info -b -$(hg heads --template "{node|short}" `hg branch`) setup

If you are using setuptools to distribute your application/package, you can access the installed package version at run time using pkg_resources.get_distribution("my_package").version. However setuptools does not support automatic version tagging with mercurial revisions, so you will have to build your distributions with commands like:

python3 setup.py egg_info -b -$(hg heads --template "{node|short}" `hg branch`) sdist

or

python3 setup.py egg_info -b -$(hg heads --template "{node|short}" `hg branch`) setup
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文