forked from prody/ProDy
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request prody#1959 from jamesmkrieger/rtbtools_upgrade_fix
Fix rtbtools to permit numpy upgrade
- Loading branch information
Showing
14 changed files
with
82 additions
and
60 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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel", "numpy>=1.10,<1.24", "pyparsing<=3.1.1", "scipy"] | ||
requires = ["setuptools", "wheel", "numpy>=1.10,<2", "pyparsing<=3.1.1", "scipy"] |
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 |
---|---|---|
@@ -1,13 +1,10 @@ | ||
#!/usr/bin/env python | ||
|
||
import imp | ||
from prody.utilities.misctools import impLoadModule | ||
import importlib | ||
if sys.version_info[0] == 2: | ||
path_prody = imp.find_module('prody')[1] | ||
else: | ||
path_prody = importlib.util.find_spec("prody").submodule_search_locations[0] | ||
apps = imp.find_module('apps', [path]) | ||
apps = imp.load_module('prody.apps', *apps) | ||
|
||
path_apps = importlib.util.find_spec("prody.apps").submodule_search_locations[0] | ||
apps = impLoadModule('prody.apps.evol_apps', path_apps + '/evol_apps/', '__init__') | ||
|
||
if __name__ == '__main__': | ||
apps.evol_main() |
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 |
---|---|---|
@@ -1,13 +1,10 @@ | ||
#!/usr/bin/env python | ||
|
||
import imp | ||
from prody.utilities.misctools import impLoadModule | ||
import importlib | ||
if sys.version_info[0] == 2: | ||
path_prody = imp.find_module('prody')[1] | ||
else: | ||
path_prody = importlib.util.find_spec("prody").submodule_search_locations[0] | ||
apps = imp.find_module('apps', [path]) | ||
apps = imp.load_module('prody.apps', *apps) | ||
|
||
path_apps = importlib.util.find_spec("prody.apps").submodule_search_locations[0] | ||
apps = impLoadModule('prody.apps.prody_apps', path_apps + '/prody_apps/', '__init__') | ||
|
||
if __name__ == '__main__': | ||
apps.prody_main() |
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