this works

This commit is contained in:
2022-12-01 14:16:06 +01:00
parent 16e4853582
commit 68e3203540
7 changed files with 12 additions and 9 deletions

2
deps/tmtccmd vendored

View File

@ -1,6 +1,11 @@
from pathlib import Path
SW_NAME = "eive-tmtc"
VERSION_MAJOR = 2
VERSION_MINOR = 0
VERSION_REVISION = 1
VERSION_REVISION = 2
__version__ = "2.0.1"
__version__ = "2.0.2"
EIVE_TMTC_ROOT = Path(__file__).parent
PACKAGE_ROOT = EIVE_TMTC_ROOT.parent

View File

@ -11,8 +11,6 @@ from spacepackets.ccsds import PacketId
from spacepackets.util import UnsignedByteField
from pathlib import Path
EIVE_TMTC_ROOT = Path(__file__).parent
PACKAGE_ROOT = EIVE_TMTC_ROOT.parent
PUS_APID = 0x65
CFDP_APID = 0x66

View File

@ -1,6 +1,6 @@
import os
from eive_tmtc.config.definitions import EIVE_TMTC_ROOT
from eive_tmtc import EIVE_TMTC_ROOT
from tmtccmd import get_console_logger
from tmtccmd.fsfw import parse_fsfw_events_csv
from tmtccmd.pus.pus_5_event import EventDictT

View File

@ -5,7 +5,7 @@
"""
import os.path
from eive_tmtc.config.definitions import EIVE_TMTC_ROOT
from eive_tmtc import EIVE_TMTC_ROOT
from tmtccmd.util.obj_id import ObjectIdDictT
from tmtccmd.fsfw import parse_fsfw_objects_csv
from tmtccmd.logging import get_console_logger

View File

@ -1,6 +1,6 @@
import os
from eive_tmtc.config.definitions import EIVE_TMTC_ROOT
from eive_tmtc import EIVE_TMTC_ROOT
from tmtccmd.fsfw import parse_fsfw_returnvalues_csv, RetvalDictT
from tmtccmd.logging import get_console_logger

View File

@ -27,7 +27,7 @@ classifiers =
[options]
install_requires =
tmtccmd >= 3.0.0rc2
tmtccmd >= 3.0.0rc3
packages = find:
python_requires = >=3.8