This repository has been archived by the owner on Sep 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* raise if n_jobs is non-positive (#1486) * [plots] deeptime compatibility for plot_flux * [its] shape fix * update pybind * include deeptime as dependency * fix regspace by using deeptime implementation * CI: update reference numpy and build distro for pip
- Loading branch information
Showing
11 changed files
with
104 additions
and
25 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
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 |
---|---|---|
|
@@ -81,6 +81,9 @@ def extensions(): | |
mdtraj_inc = mdtraj_capi()['include_dir'] | ||
mdtraj_lib = mdtraj_capi()['lib_dir'] | ||
|
||
from deeptime import capi_includes | ||
deeptime_inc = capi_includes(inc_clustering=True) | ||
|
||
lib_prefix = 'lib' if sys.platform.startswith('win') else '' | ||
common_cflags = ['-O3', ] | ||
|
||
|
@@ -91,7 +94,7 @@ def extensions(): | |
mdtraj_inc, | ||
pybind_inc, | ||
'pyemma/coordinates/clustering/include', | ||
], | ||
] + deeptime_inc, | ||
language='c++', | ||
libraries=[lib_prefix+'theobald'], | ||
library_dirs=[mdtraj_lib], | ||
|
@@ -301,6 +304,7 @@ def build_extensions(self): | |
'pyyaml', | ||
'scipy>=0.11', | ||
'tqdm>=4.23', | ||
'deeptime' | ||
# 'deeptime @ git+https://[email protected]/deeptime-ml/deeptime.git@main#egg=deeptime' # for re-integration purposes | ||
], | ||
zip_safe=False, | ||
|