Skip to content

Commit

Permalink
v1.9.48: fixed imports in DateConversionTest.py
Browse files Browse the repository at this point in the history
  • Loading branch information
annazhukova committed Sep 11, 2024
1 parent 5080c5e commit 33c7162
Show file tree
Hide file tree
Showing 4 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.10.14-slim
RUN mkdir /pasteur

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

# 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.47'
PASTML_VERSION = '1.9.48'

METHOD = 'method'
STATES = 'states'
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.47',
version='1.9.48',
description='Ancestral character reconstruction and visualisation for rooted phylogenetic trees.',
author='Anna Zhukova',
author_email='anna.zhukova@pasteur.fr',
Expand Down
2 changes: 1 addition & 1 deletion tests/DateConversionTest.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest
from datetime import datetime

from pastml.acr import datetime2numeric, numeric2datetime
from pastml import datetime2numeric, numeric2datetime


class DateConversionTest(unittest.TestCase):
Expand Down

0 comments on commit 33c7162

Please sign in to comment.