-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fix/pandas_tools' into 'dev'
add lazy loading of pandas tools to prevent errors in new version of rdkit See merge request cdd/QSPRpred!187
- Loading branch information
Showing
13 changed files
with
1,350 additions
and
1,961 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
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
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
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 |
---|---|---|
|
@@ -30,9 +30,11 @@ maintainers = [{ name = "Helle van den Maagdenberg", email = "h.w.van.den.maagde | |
{ name = "Gerard van Westen", email = "[email protected]" }] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Operating System :: OS Independent", # We tested it on Mac and Windows as well? | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"Topic :: Scientific/Engineering :: Chemistry", | ||
|
@@ -70,15 +72,17 @@ extra = [ | |
"prodec", | ||
"Signature-pywrapper", | ||
] | ||
pyboost = ["py-boost"] | ||
deep = [ | ||
"torch >= 1.7.0", | ||
"chemprop >= 1.6.0" | ||
] | ||
chemprop = [ | ||
"rdkit < 2023.9.6", | ||
"chemprop >= 1.6.0, < 2.0.0", | ||
] | ||
full = [ | ||
"qsprpred[pyboost]", | ||
"qsprpred[deep]", | ||
"qsprpred[extra]" | ||
"qsprpred[extra]", | ||
"qsprpred[chemprop]", | ||
] | ||
dev = [ | ||
"qsprpred[full]", | ||
|
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
Oops, something went wrong.