Skip to content

Commit bc3e5c4

Browse files
committed
Prepare for merge
1 parent fe2711b commit bc3e5c4

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/conan-package.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ on:
2121
- '[0-9].[0-9][0-9]*'
2222

2323
jobs:
24-
# FIXME: Use main once merged
2524
conan-package:
26-
uses: ultimaker/cura-workflows/.github/workflows/conan-package.yml@CURA-11622_conan_v2
25+
uses: ultimaker/cura-workflows/.github/workflows/conan-package.yml@main
2726
secrets: inherit

conanfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class ArcusConan(ConanFile):
2424
settings = "os", "compiler", "build_type", "arch"
2525
exports = "LICENSE*"
2626
package_type = "library"
27-
python_requires = "sentrylibrary/1.0.0@ultimaker/cura_11622" # FIXME: use main after merge
27+
python_requires = "sentrylibrary/1.0.0@ultimaker/stable"
2828
python_requires_extend = "sentrylibrary.SentryLibrary"
2929

3030
options = {
@@ -114,7 +114,7 @@ def validate(self):
114114
raise ConanInvalidConfiguration(f"Unable to enable Sentry because no {sentry_setting} was configured")
115115

116116
def build_requirements(self):
117-
self.test_requires("standardprojectsettings/[>=0.2.0]@ultimaker/cura_11622") # FIXME: use stable after merge
117+
self.test_requires("standardprojectsettings/[>=0.2.0]@ultimaker/stable")
118118
self.tool_requires("protobuf/3.21.12")
119119

120120
def generate(self):

test_package/conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class ArcusTestConan(ConanFile):
99
test_type = "explicit"
1010

1111
def build_requirements(self):
12-
self.test_requires("standardprojectsettings/[>=0.2.0]@ultimaker/cura_11622") # FIXME: use stable after merge
12+
self.test_requires("standardprojectsettings/[>=0.2.0]@ultimaker/stable")
1313
self.tool_requires("protobuf/3.21.12")
1414

1515
def requirements(self):

0 commit comments

Comments
 (0)