从 conda 自定义通道中删除具有相同版本的构建
在 DEV 环境的自定义 conda 通道中,我们可能会使用多个具有相同版本号的构建。这可能是由于多次合并到开发分支并触发您的 CID 进程所致。
是否有一种准确的方法来确保该软件包的任何消费者都只会使用最新的?也许通过删除任何以前的版本 == 版本?
我正在使用 build_number
,它对于每个版本都是唯一的。
In a custom conda channel for a DEV environment, we may and up with several builds having the same version number. This can just be caused by several merges into the develop branch and triggering your CID process.
Is there an accurate way to ensure that any consumer, of this package, would only use the very latest? Maybe by removing any previous build with the == version?
I'm utilising the build_number
, which unique for every build.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在其他条件相同的情况下,Conda 将青睐最新版本,因此只要版本号不断增加,就没有理由删除版本。
Conda will favor latest build, all else being equal, so there should be no reason to remove builds as long as the build numbers are incrementing.