Skip to content

Commit

Permalink
Merge pull request #69 from Merck/prihoda-patch-1
Browse files Browse the repository at this point in the history
Require hmmlearn < 0.2.7
  • Loading branch information
prihoda authored Feb 15, 2022
2 parents e91f56e + a79631c commit 2dbbab3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CONDA_ACTIVATE = eval "$$(conda shell.bash hook)" && conda activate $(ENV_NAME)

env:
conda create -n $(ENV_NAME) -c bioconda python=3.7 hmmer prodigal
$(CONDA_ACTIVATE); pip install numpy; pip install . pytest pytest-mock hmmlearn
$(CONDA_ACTIVATE); pip install numpy; pip install . pytest pytest-mock .[hmm]

download:
$(CONDA_ACTIVATE); deepbgc download
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
install_requires=install_requires,
keywords='biosynthetic gene clusters, bgc detection, deep learning, pfam2vec',
extras_require={
'hmm': ['hmmlearn>=0.2.1']
'hmm': ['hmmlearn>=0.2.1,<0.2.7']
},
classifiers=[
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 2dbbab3

Please sign in to comment.