summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIikka Eklund <iikka.eklund@qt.io>2022-08-15 15:10:40 +0300
committerIikka Eklund <iikka.eklund@qt.io>2022-09-06 07:09:12 +0000
commit79f0bd8c0afb851b3065127e633ac5c6d8499465 (patch)
tree49eb1ae2a8cdce7b8c249500a4b3be45e7fcef79
parent4fbbf5b6f7a6f8bb9da9dc9ace01c40b32af17d2 (diff)
Use strict versioning for dependencies of Qt packagesdev
Between Qt Conan packages there should not be any real need to support semantic version for dependencies. Qt CI produces all the dependencies per each integration so dependencies, including pre-releases, can be found always with strict version numbers. Change-Id: I1439a95146b8ecde283161ff5ef71d33c0f4aba8 Reviewed-by: Toni Saario <toni.saario@qt.io>
-rw-r--r--conanfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/conanfile.py b/conanfile.py
index 76f8ce5..6f7fe78 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -739,7 +739,7 @@ class QtLeafModule(metaclass=ABCMeta):
for dep in requirements:
# will match latest prerelase of final major.minor.patch
self.requires(
- "{0}/[<={1}, include_prerelease=True]@{2}/{3}".format(
+ "{0}/{1}@{2}/{3}".format(
dep, ver, self.user, self.channel
)
)