Skip to content

Commit

Permalink
v1.9.50: made colours for 13 characters compatible with 12 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
annazhukova committed Jan 17, 2025
1 parent 5d4c19c commit aca78bb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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.10.14-slim
RUN mkdir /pasteur

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

# The entrypoint runs pastml with command line arguments
ENTRYPOINT ["pastml"]
2 changes: 1 addition & 1 deletion pastml/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging
from datetime import datetime

PASTML_VERSION = '1.9.49'
PASTML_VERSION = '1.9.50'

METHOD = 'method'
STATES = 'states'
Expand Down
4 changes: 2 additions & 2 deletions pastml/visualisation/colour_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
'#ffff99'],
12: ['#a6cee3', '#1f78b4', '#b2df8a', '#33a02c', '#fb9a99', '#e31a1c', '#fdbf6f', '#ff7f00', '#cab2d6', '#6a3d9a',
'#ffff99', '#b15928'],
13: ['#cc9566', '#ccc466', '#a4cc66', '#75cc66', '#66cc85', '#66ccb4', '#66b4cc',
'#6685cc', '#7566cc', '#a466cc', '#cc66c4', '#cc6695', '#cc6666']
13: ['#a6cee3', '#1f78b4', '#b2df8a', '#33a02c', '#fb9a99', '#e31a1c', '#fdbf6f', '#ff7f00', '#cab2d6', '#6a3d9a',
'#ffff99', '#b15928', '#eada28'],
}

WHITE = '#ffffff'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only',
],
version='1.9.49',
version='1.9.50',
description='Ancestral character reconstruction and visualisation for rooted phylogenetic trees.',
author='Anna Zhukova',
author_email='anna.zhukova@pasteur.fr',
Expand Down

0 comments on commit aca78bb

Please sign in to comment.