Skip to content

Commit

Permalink
downgrade rdkit on windows/python3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
philopon committed Sep 4, 2018
1 parent 3dc4e54 commit adabe35
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion extra/ci/get-rdkit-version.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
import re

comment = re.compile(r'^\s*#')

def main(data, os, pyver):
d = {
(os, pyver): ver
for os, pyver, ver
in (line.strip().split() for line in open(data))
in (line.strip().split() for line in open(data) if not comment.match(line))
}

print(d[(os, pyver)])
Expand Down
3 changes: 2 additions & 1 deletion extra/requirements/rdkit-versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ Linux 3.6 2018.03.4.0
Linux 3.5 2018.03.4.0
Linux 2.7 2018.03.4.0
Windows 3.6 2018.03.4.0
Windows 3.5 2017.09.3.0
# 2018.03.1.1 and 2017.09.3.0 on Windows/3.5 are broken
Windows 3.5 2017.09.2.0
Windows 2.7 2017.09.3.0

0 comments on commit adabe35

Please sign in to comment.