-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade some modules, use pinned modules at install
- Loading branch information
Showing
2 changed files
with
9 additions
and
5 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 |
---|---|---|
|
@@ -45,7 +45,7 @@ def get_dependencies(env_yml_file): | |
elif isinstance(dep, dict) and 'pip' in dep: | ||
pip_dependencies = dep['pip'] | ||
|
||
return conda_dependencies + pip_dependencies | ||
return pip_dependencies | ||
|
||
# Pytest | ||
|
||
|
@@ -90,7 +90,7 @@ def run_tests(self): | |
author_email="[email protected], [email protected], [email protected], [email protected], [email protected]", | ||
version='0.9.2', | ||
setup_requires=['pyyaml'], | ||
install_requires=[get_dependencies('conda-environment.yml')], | ||
install_requires=[get_dependencies('environment-pinned.yml')], | ||
platforms=['OS Independent'], | ||
license='Gnu Public License V2', | ||
classifiers=CLASSIFIERS, | ||
|