-
Notifications
You must be signed in to change notification settings - Fork 12
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
Updating dep versions for bh2 install #522
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a comment about rdkit
@@ -41,7 +41,7 @@ dependencies: | |||
- pytorch_scatter >=2.0 | |||
|
|||
# chemistry | |||
- rdkit | |||
- rdkit == 2024.03.4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why?? And why not <= 2024.03.3
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The latest version of rdkit
was not being installed with the required files that are imported by graphium_cpp
. So, I pinned it to a very recent version. We could do <= 2024.03.4
, but can we confirm that all earlier versions of rdkit
contain the required files needed by graphium_cpp
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let me also clean my conda
cache and confirm that it wasn't just a local cache issue with the latest version of rdkit
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Confirmed that the latest version of rdkit
on conda
does not include the required files for graphium_cpp
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah this was something that @ndickson-nvidia mentioned as well.
I will merge the PR
Changelogs
numpy
to the latest version < 2.0.graphium
uses the oldnumpy
API and must be below version 2.0 for now.cuda-version
package. This allows for the CUDA-compatible version ofpytorch
to be installedrdkit
to a recent version which contains all of the required files (imports) forgraphium_cpp
Checklist:
Was this PR discussed in an issue? It is recommended to first discuss a new feature into a GitHub issue before opening a PR.Add tests to cover the fixed bug(s) or the new introduced feature(s) (if appropriate).Update the API documentation is a new function is added, or an existing one is deleted.feature
,fix
ortest
(or ask a maintainer to do it for you).discussion related to that PR