访问当前修订号
每次运行我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 setuptools 分发应用程序/包,则可以使用
pkg_resources.get_distribution("my_package").version
在运行时访问已安装的包版本。但是 setuptools 不支持 Mercurial 修订版本的自动版本标记,因此您必须使用以下命令构建您的发行版:或
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:or