Skip to content

Commit

Permalink
Use mainstream CPython
Browse files Browse the repository at this point in the history
  • Loading branch information
wawanbreton committed Sep 6, 2024
1 parent bb4523a commit f52af50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from conan.tools.microsoft import check_min_vs, is_msvc, is_msvc_static_runtime
from conan.tools.scm import Version, Git

required_conan_version = ">=1.58.0"
required_conan_version = ">=2.7.0"


class ArcusConan(ConanFile):
Expand Down Expand Up @@ -74,6 +74,7 @@ def requirements(self):
self.requires(req)
self.requires("protobuf/3.21.12", transitive_headers=True)
self.requires("zlib/1.3.1")
self.requires("cpython/3.12.2")

def validate(self):
if self.settings.compiler.cppstd:
Expand All @@ -89,7 +90,6 @@ 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("cpython/3.12.2@ultimaker/cura_11622") # FIXME: use stable after merge

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

0 comments on commit f52af50

Please sign in to comment.