Skip to content

Commit

Permalink
v1.9.46: Scipy version
Browse files Browse the repository at this point in the history
  • Loading branch information
annazhukova committed Jul 12, 2024
1 parent 24b7de1 commit 6eefe01
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM python:3.9-slim
RUN mkdir /pasteur

# Install pastml
RUN cd /usr/local/ && pip3 install --no-cache-dir pastml==1.9.45
RUN cd /usr/local/ && pip3 install --no-cache-dir pastml==1.9.46

# The entrypoint runs pastml with command line arguments
ENTRYPOINT ["pastml"]
2 changes: 1 addition & 1 deletion pastml/acr.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
from pastml.visualisation.itol_manager import generate_itol_annotations
from pastml.visualisation.tree_compressor import REASONABLE_NUMBER_OF_TIPS, VERTICAL, HORIZONTAL, TRIM

PASTML_VERSION = '1.9.45'
PASTML_VERSION = '1.9.46'

model2class = {F81: F81Model, JC: JCModel, CUSTOM_RATES: CustomRatesModel, HKY: HKYModel, JTT: JTTModel, EFT: EFTModel}

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only',
],
version='1.9.45',
version='1.9.46',
description='Ancestral character reconstruction and visualisation for rooted phylogenetic trees.',
author='Anna Zhukova',
author_email='anna.zhukova@pasteur.fr',
url='https://github.com/evolbioinfo/pastml',
keywords=['PASTML', 'visualisation', 'phylogeny', 'ancestral character reconstruction'],
python_requires='>=3.9',
install_requires=['ete3>=3.1.1', 'pandas>=1.0.0', 'numpy>=1.22', 'jinja2>=2.11.0', 'scipy==1.10.0-rc1', 'itolapi>=4.0.0', 'biopython>=1.70'],
install_requires=['ete3>=3.1.1', 'pandas>=1.0.0', 'numpy>=1.22', 'jinja2>=2.11.0', 'scipy==1.14.0', 'itolapi>=4.0.0', 'biopython>=1.70'],
entry_points={
'console_scripts': [
'pastml = pastml.acr:main',
Expand Down

0 comments on commit 6eefe01

Please sign in to comment.