-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix docker dependencies with pystache and fisher packages (#114)
* docs temporary workaround with old version of setuptools * fix docker with new dependencies Co-authored-by: Lonneke Scheffer <[email protected]>
- Loading branch information
1 parent
7033912
commit 06ca621
Showing
3 changed files
with
11 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,8 +21,9 @@ def import_requirements(filename) -> list: | |
author_email="[email protected]", | ||
url="https://github.com/uio-bmi/immuneML", | ||
install_requires=["pytest>=4", "pandas>=1", "PyYAML>=5.3", "scikit-learn>=0.23", "gensim>=3.8,<4", "matplotlib>=3.1", "editdistance==0.5.3", | ||
"regex", "tzlocal", "airr>=1", "pystache", "torch>=1.5.1", "numpy>=1.18.5", "Cython", "h5py<=2.10.0", "dill>=0.3", "tqdm>=0.24", # Note: h5py v3 does not work with DeepRC, but works with everything else | ||
"tensorboard>=1.14.0", "requests>=2.21", "plotly>=4", "logomaker>=0.8", "fishersapi", "matplotlib-venn>=0.11", "scipy"], | ||
"regex", "tzlocal", "airr>=1", "pystache==0.5.4", "torch>=1.5.1", "Cython", "h5py<=2.10.0", "dill>=0.3", "tqdm>=0.24", # Note: h5py v3 does not work with DeepRC, but works with everything else | ||
"tensorboard>=1.14.0", "requests>=2.21", "plotly>=4", "logomaker>=0.8", "fishersapi", "matplotlib-venn>=0.11", | ||
"numpy>=1.18.5", "scipy"], | ||
extras_require={ | ||
"TCRdist": ["parasail==1.2", "tcrdist3>=0.1.6"] | ||
}, | ||
|