Skip to content

Commit

Permalink
Set RDKit version to Release_2024_03_1
Browse files Browse the repository at this point in the history
  • Loading branch information
Create or Update Pull Request Action committed Apr 28, 2024
1 parent b3ff3fb commit b75b02a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,23 @@ def build_rdkit(self, ext):
# Start build process
os.chdir(str("rdkit"))

if rdkit_tag = "Release_2024_03_1"
# https://github.com/rdkit/rdkit/pull/7308/commits/bc3cc44dbf38621440c32f34689cdd68974e3a7d
check_call(["git", "config", "--global", "user.email", '"you@example.com"'])
check_call(["git", "config", "--global", "user.name", '"Your Name"'])

check_call(["git", "fetch", "origin", "pull/7308/head:tag_release"])
check_call(
[
"git",
"cherry-pick",
"--strategy=recursive",
"-X",
"theirs",
"bc3cc44dbf38621440c32f34689cdd68974e3a7d",
]
)

# Define CMake options
options = [
f"-DCMAKE_TOOLCHAIN_FILE={conan_toolchain_path / 'conan_toolchain.cmake'}",
Expand Down

0 comments on commit b75b02a

Please sign in to comment.