Skip to content
Merged
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
6 changes: 3 additions & 3 deletions env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies:
- platformdirs

# scientific
- numpy
- numpy == 1.26.4
- scipy >=1.4
- pandas >=1.0
- scikit-learn
Expand All @@ -28,7 +28,7 @@ dependencies:
- gcsfs >=2021.6

# ML packages
- cuda-version == 11.2 # works also with CPU-only system.
- cuda-version # works also with CPU-only system.
- pytorch >=1.12
- lightning >=2.0
- torchmetrics >=0.7.0,<0.11
Expand All @@ -41,7 +41,7 @@ dependencies:
- pytorch_scatter >=2.0

# chemistry
- rdkit
- rdkit == 2024.03.4
Copy link
Collaborator

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?

Copy link
Collaborator Author

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?

Copy link
Collaborator Author

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

Copy link
Collaborator Author

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

Copy link
Collaborator

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

- datamol >=0.10
- boost # needed by rdkit

Expand Down