mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Check against older versions
This commit is contained in:
parent
a4a3296dd2
commit
be057d495d
1 changed files with 3 additions and 1 deletions
4
.github/workflows/conan-recipe-version.yml
vendored
4
.github/workflows/conan-recipe-version.yml
vendored
|
|
@ -173,7 +173,9 @@ jobs:
|
||||||
branches_version = []
|
branches_version = []
|
||||||
for branch in repo.branches:
|
for branch in repo.branches:
|
||||||
try:
|
try:
|
||||||
branches_version.append(tools.Version(branch.name))
|
b_version = tools.Version(branch.name)
|
||||||
|
if b_version < tools.Version("10.0.0"):
|
||||||
|
branches_version.append(b_version)
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
latest_branches_version = max(sorted(branches_version))
|
latest_branches_version = max(sorted(branches_version))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue