From 82b388e23e8745c8671b8dfb1a55e443f59bf274 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 6 Feb 2025 13:04:09 +0100 Subject: [PATCH] dependency fix --- eive_tmtc/cfdp/user.py | 3 ++- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/eive_tmtc/cfdp/user.py b/eive_tmtc/cfdp/user.py index 7806489..76c5726 100644 --- a/eive_tmtc/cfdp/user.py +++ b/eive_tmtc/cfdp/user.py @@ -4,7 +4,8 @@ import logging from spacepackets.cfdp import ConditionCode from spacepackets.util import UnsignedByteField from cfdppy import CfdpUserBase, TransactionId -from cfdppy.mib import CheckTimerProvider, Countdown, EntityType +from cfdppy.mib import CheckTimerProvider, EntityType +from spacepackets.countdown import Countdown from cfdppy.user import ( TransactionFinishedParams, MetadataRecvParams, diff --git a/pyproject.toml b/pyproject.toml index f2f48c5..0aa9dfb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ classifiers = [ "Topic :: Scientific/Engineering" ] dependencies = [ - "tmtccmd ~= 8.1", + "tmtccmd ~= 8.1.1", # "tmtccmd @ git+https://github.com/robamu-org/tmtccmd@main", "cfdp-py>=0.4, <=0.5", "python-dateutil ~= 2.8",