Skip to content

Commit 24b7de1

Browse files
committed
v1.9.45: Scipy version
1 parent af6b601 commit 24b7de1

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM python:3.9-slim
2+
3+
RUN mkdir /pasteur
4+
5+
# Install pastml
6+
RUN cd /usr/local/ && pip3 install --no-cache-dir pastml==1.9.45
7+
8+
# The entrypoint runs pastml with command line arguments
9+
ENTRYPOINT ["pastml"]

pastml/acr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
from pastml.visualisation.itol_manager import generate_itol_annotations
3535
from pastml.visualisation.tree_compressor import REASONABLE_NUMBER_OF_TIPS, VERTICAL, HORIZONTAL, TRIM
3636

37-
PASTML_VERSION = '1.9.43'
37+
PASTML_VERSION = '1.9.45'
3838

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
'Programming Language :: Python :: 3.10',
2424
'Programming Language :: Python :: 3 :: Only',
2525
],
26-
version='1.9.44',
26+
version='1.9.45',
2727
description='Ancestral character reconstruction and visualisation for rooted phylogenetic trees.',
2828
author='Anna Zhukova',
2929
author_email='anna.zhukova@pasteur.fr',
3030
url='https://github.com/evolbioinfo/pastml',
3131
keywords=['PASTML', 'visualisation', 'phylogeny', 'ancestral character reconstruction'],
3232
python_requires='>=3.9',
33-
install_requires=['ete3>=3.1.1', 'pandas>=1.0.0', 'numpy>=1.22', 'jinja2>=2.11.0', 'scipy>=1.5.0', 'itolapi>=4.0.0', 'biopython>=1.70'],
33+
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'],
3434
entry_points={
3535
'console_scripts': [
3636
'pastml = pastml.acr:main',

0 commit comments

Comments
 (0)