-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For some reason, the ray actors were failing to properly import the cython code in the lru-dict library. Kept giving the error `AttributeError: type object 'LRU' has no attribute '__len__'` Switching to pylru (pure python) fixed the issues
- Loading branch information
Jeffrey Law
committed
Apr 3, 2024
1 parent
a027627
commit 76c0688
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ include_package_data = true | |
install_requires = | ||
graphenv | ||
tensorflow | ||
lru-dict | ||
pylru | ||
rdkit | ||
nfp | ||
|
||
|