Skip to content

Commit

Permalink
tests: Depend on cloe-launch-profile >= 0.20
Browse files Browse the repository at this point in the history
Instead of ~= 0.20, which will break every time we update the
repository version.
  • Loading branch information
cassava committed Dec 7, 2023
1 parent 637f44c commit c6aaea2
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion engine/tests/conanfile_with_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class CloeTest(ConanFile):
python_requires = "cloe-launch-profile/[~=0.20.0]@cloe/develop"
python_requires = "cloe-launch-profile/[>=0.20.0]@cloe/develop"
python_requires_extend = "cloe-launch-profile.Base"

@property
Expand Down
2 changes: 1 addition & 1 deletion engine/tests/conanfile_without_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class CloeTest(ConanFile):
python_requires = "cloe-launch-profile/[~=0.20.0]@cloe/develop"
python_requires = "cloe-launch-profile/[>=0.20.0]@cloe/develop"
python_requires_extend = "cloe-launch-profile.Base"
default_options = {
"cloe-engine:server": False,
Expand Down
2 changes: 1 addition & 1 deletion optional/vtd/tests/conanfile_with_vtd-2.2.0.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


class CloeTest(ConanFile):
python_requires = "cloe-launch-profile/[~=0.20.0]@cloe/develop"
python_requires = "cloe-launch-profile/[>=0.20.0]@cloe/develop"
python_requires_extend = "cloe-launch-profile.Base"

default_options = {
Expand Down
2 changes: 1 addition & 1 deletion optional/vtd/tests/conanfile_with_vtd-2022.3.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


class CloeTest(ConanFile):
python_requires = "cloe-launch-profile/[~=0.20.0]@cloe/develop"
python_requires = "cloe-launch-profile/[>=0.20.0]@cloe/develop"
python_requires_extend = "cloe-launch-profile.Base"

default_options = {
Expand Down
2 changes: 1 addition & 1 deletion plugins/gndtruth_extractor/tests/conanfile_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


class CloeTest(ConanFile):
python_requires = "cloe-launch-profile/[~=0.20.0]@cloe/develop"
python_requires = "cloe-launch-profile/[>=0.20.0]@cloe/develop"
python_requires_extend = "cloe-launch-profile.Base"

default_options = {
Expand Down
2 changes: 1 addition & 1 deletion plugins/minimator/tests/conanfile_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class CloeTest(ConanFile):
python_requires = "cloe-launch-profile/[~=0.20.0]@cloe/develop"
python_requires = "cloe-launch-profile/[>=0.20.0]@cloe/develop"
python_requires_extend = "cloe-launch-profile.Base"

default_options = {
Expand Down
2 changes: 1 addition & 1 deletion plugins/virtue/tests/conanfile_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class CloeTest(ConanFile):
python_requires = "cloe-launch-profile/[~=0.20.0]@cloe/develop"
python_requires = "cloe-launch-profile/[>=0.20.0]@cloe/develop"
python_requires_extend = "cloe-launch-profile.Base"

default_options = {
Expand Down
2 changes: 1 addition & 1 deletion tests/conanfile_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class CloeTest(ConanFile):
python_requires = "cloe-launch-profile/[~=0.20.0]@cloe/develop"
python_requires = "cloe-launch-profile/[>=0.20.0]@cloe/develop"
python_requires_extend = "cloe-launch-profile.Base"

default_options = {
Expand Down
2 changes: 1 addition & 1 deletion tests/conanfile_with_boost_1.78.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class CloeTest(ConanFile):
python_requires = "cloe-launch-profile/[~=0.20.0]@cloe/develop"
python_requires = "cloe-launch-profile/[>=0.20.0]@cloe/develop"
python_requires_extend = "cloe-launch-profile.Base"

default_options = {
Expand Down

0 comments on commit c6aaea2

Please sign in to comment.