Skip to content

Commit

Permalink
Pin libnest2d to release 5.3.0
Browse files Browse the repository at this point in the history
Contributes to CURA-10475 and CURA-10951
  • Loading branch information
jellespijker committed Sep 11, 2023
1 parent 448bfa1 commit a44ffd4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class PyNest2DConan(ConanFile):

def set_version(self):
if not self.version:
self.version = "5.3.0-alpha"
self.version = "5.4.0-alpha"

@property
def _min_cppstd(self):
Expand All @@ -66,7 +66,7 @@ def export_sources(self):
copy(self, "*", path.join(self.recipe_folder, "python"), path.join(self.export_sources_folder, "python"))

def requirements(self):
self.requires("nest2d/(latest)@ultimaker/testing")
self.requires("nest2d/5.3.0")
self.requires("cpython/3.10.4")

def validate(self):
Expand Down Expand Up @@ -96,7 +96,6 @@ def configure(self):
def generate(self):
pp = self.python_requires["pyprojecttoolchain"].module.PyProjectToolchain(self)
pp.blocks["tool_sip_project"].values["sip_files_dir"] = str(Path("python").as_posix())
# mkdir(self, self.build_path) # FIXME: bad, this should not be necessary
pp.blocks.remove("extra_sources")
pp.generate()

Expand Down

2 comments on commit a44ffd4

@sturm207
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

löcke. remove("extra_sources")
pp. erzeugen()

0 Kommentare Bei Commit a44ffd4
@sturm207
Kommentar

@jellespijker
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure what you're referring to exactly. But please be aware that we recently switched from to a different Artifactory for our Conan packages. If you're experiencing problems it is best to remove this package from your local conan cache, do a reinstall of the configuration and build again

Please sign in to comment.