Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[scippp] add version 1.2.0 #24055

Merged
merged 4 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions recipes/scippp/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
sources:
"1.2.0":
url: "https://github.com/scipopt/SCIPpp/archive/refs/tags/1.2.0.tar.gz"
sha256: "8fa4b819734b9841eda1ec1c9266fb07144be490c3f24be46271c538ab18da61"
"1.1.0":
url: "https://github.com/scipopt/SCIPpp/archive/refs/tags/1.1.0.tar.gz"
sha256: "808b58e8ddd873ec403c021f9255004120e58d7ec6fb4b7d99ff6f21950ff8fb"
"1.0.2":
url: "https://github.com/scipopt/SCIPpp/archive/refs/tags/1.0.2.tar.gz"
sha256: "d51dfd0f1ca1b57619f7c82e32d5390d99d5cdaee98ae1ace99ec05a394dcee3"
scip_mapping:
"1.2.0": "9.0.1"
"1.1.0": "8.0.4"
"1.0.2": "8.0.4"

Check failure on line 14 in recipes/scippp/all/conandata.yml

View workflow job for this annotation

GitHub Actions / Lint changed files (YAML files)

conandata.yml schema error

Schema outlined in https://github.com/conan-io/conan-center-index/blob/master/docs/adding_packages/conandata_yml_format.md#patches-fields is not followed. unexpected key not in schema 'scip_mapping' in scip_mapping: ^ (line: 11)
2 changes: 1 addition & 1 deletion recipes/scippp/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def configure(self):

def requirements(self):
# see https://github.com/scipopt/SCIPpp/blob/1.0.0/conanfile.py#L25
self.requires("scip/8.0.4", transitive_headers=True)
self.requires(f"scip/{self.conan_data['scip_mapping'][self.version]}", transitive_headers=True)

def generate(self):
tc = CMakeToolchain(self)
Expand Down
2 changes: 2 additions & 0 deletions recipes/scippp/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
versions:
"1.2.0":
folder: all
"1.1.0":
folder: all
"1.0.2":
Expand Down
Loading