-
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.
- Loading branch information
1 parent
68ba881
commit 075c2b7
Showing
5 changed files
with
19 additions
and
11 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
class Constants: | ||
|
||
VERSION = "2.2.1" | ||
VERSION = "2.2.2" | ||
|
||
# encoding constants | ||
FEATURE_DELIMITER = "-" | ||
|
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 |
---|---|---|
|
@@ -20,10 +20,10 @@ def import_requirements(filename) -> list: | |
author="immuneML Team", | ||
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", "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"], | ||
install_requires=["numpy>=1.18.5", "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", "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"], | ||
extras_require={ | ||
"TCRdist": ["parasail==1.2", "tcrdist3>=0.1.6"] | ||
}, | ||
|