Skip to content

Commit

Permalink
Prepare for merge
Browse files Browse the repository at this point in the history
CURA-11622
  • Loading branch information
wawanbreton committed Dec 4, 2024
1 parent b3e36b2 commit 5758553
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/conan-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ on:
- '[0-9].[0-9][0-9]*'

jobs:
# FIXME: Use main once merged
conan-package:
uses: ultimaker/cura-workflows/.github/workflows/conan-package.yml@CURA-11622_conan_v2
uses: ultimaker/cura-workflows/.github/workflows/conan-package.yml@main
secrets: inherit
2 changes: 1 addition & 1 deletion conandata.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version: "5.4.1"
requirements:
- "arcus/5.4.1@ultimaker/cura_11622"
- "arcus/5.4.1"
6 changes: 3 additions & 3 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ArcusConan(ConanFile):
generators = "CMakeDeps"
package_type = "library"

python_requires = "pyprojecttoolchain/[>=0.2.0]@ultimaker/cura_11622", "sipbuildtool/[>=0.3.0]@ultimaker/cura_11622" # FIXME: use stable after merge
python_requires = "pyprojecttoolchain/[>=0.2.0]@ultimaker/stable", "sipbuildtool/[>=0.3.0]@ultimaker/stable"

options = {
"shared": [True, False],
Expand Down Expand Up @@ -87,8 +87,8 @@ def validate(self):
)

def build_requirements(self):
self.test_requires("standardprojectsettings/[>=0.2.0]@ultimaker/cura_11622") # FIXME: use stable after merge
self.test_requires("sipbuildtool/[>=0.3.0]@ultimaker/cura_11622") # FIXME: use stable after merge
self.test_requires("standardprojectsettings/[>=0.2.0]@ultimaker/stable")
self.test_requires("sipbuildtool/[>=0.3.0]@ultimaker/stable")

def config_options(self):
if self.settings.os == "Windows":
Expand Down

0 comments on commit 5758553

Please sign in to comment.