Skip to content

Commit f53e790

Browse files
github-actions[bot]Create or Update Pull Request Actionkuelumbus
authored
🤖 Bump RDKit version to Release_2025_03_2 (#130) [skip ci]
* Set RDKit version to Release_2025_03_2 * 🤖 Bump RDKit version to Release_2025_03_1 (#129) [skip ci] * Set RDKit version to Release_2025_03_1 * Switch to windows 2022 GH runners * Cherry pick fix from rdkit --------- Co-authored-by: Create or Update Pull Request Action <create-or-update-pull-request@users.noreply.github.com> Co-authored-by: Christopher Kuenneth <christopher.kuenneth@gmail.com> * Cherry pick eigen fix * Set RDKit version to Release_2025_03_2 * Fix [skip ci] --------- Co-authored-by: Create or Update Pull Request Action <create-or-update-pull-request@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Christopher Kuenneth <christopher.kuenneth@gmail.com> Co-authored-by: Chris Kuenneth <44866753+kuelumbus@users.noreply.github.com>
1 parent 1989a31 commit f53e790

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from setuptools.command.build_ext import build_ext as build_ext_orig
1313

1414
# RDKit version to build (tag from github repository)
15-
rdkit_tag = "Release_2025_03_1"
15+
rdkit_tag = "Release_2025_03_2"
1616

1717
with open("README.md", "r", encoding="utf-8") as fh:
1818
long_description = fh.read()
@@ -156,20 +156,20 @@ def build_rdkit(self, ext):
156156
# Start build process
157157
os.chdir(str("rdkit"))
158158

159-
if rdkit_tag == "Release_2025_03_1":
159+
if rdkit_tag == "Release_2025_03_2":
160160
# https://github.com/rdkit/rdkit/pull/8399/commits/e5b1e3caf0c362139a5905575b5f995c470b9300
161161
check_call(["git", "config", "--global", "user.email", '"you@example.com"'])
162162
check_call(["git", "config", "--global", "user.name", '"Your Name"'])
163163

164-
check_call(["git", "fetch", "origin", "pull/8399/head:tag_release"])
164+
check_call(["git", "fetch", "origin", "pull/8477/head:tag_release"])
165165
check_call(
166166
[
167167
"git",
168168
"cherry-pick",
169169
"--strategy=recursive",
170170
"-X",
171171
"theirs",
172-
"e5b1e3caf0c362139a5905575b5f995c470b9300",
172+
"0b8fc6fbf7bee2a0de34daee6088aeb8c8036272",
173173
]
174174
)
175175

0 commit comments

Comments
 (0)