Compare commits

..

2 Commits

Author SHA1 Message Date
7721a57a67 Merge pull request 'dependency fix' () from tmtc-dep-fix into main
Reviewed-on: 
2025-02-10 14:44:37 +01:00
d1f92f7aed dependency fix 2025-02-10 14:42:12 +01:00
3 changed files with 8 additions and 4 deletions

@@ -10,6 +10,10 @@ list yields a list of all related PRs for each release.
# [unreleased] # [unreleased]
# [v7.1.1] 2025-02-10
- Bumped `tmtccmd` to v8.2.0
# [v7.1.0] 2025-01-17 # [v7.1.0] 2025-01-17
- Bumped `tmtccmd` to v8.1.0 - Bumped `tmtccmd` to v8.1.0

@@ -4,7 +4,8 @@ import logging
from spacepackets.cfdp import ConditionCode from spacepackets.cfdp import ConditionCode
from spacepackets.util import UnsignedByteField from spacepackets.util import UnsignedByteField
from cfdppy import CfdpUserBase, TransactionId 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 ( from cfdppy.user import (
TransactionFinishedParams, TransactionFinishedParams,
MetadataRecvParams, MetadataRecvParams,

@@ -29,9 +29,8 @@ classifiers = [
"Topic :: Scientific/Engineering" "Topic :: Scientific/Engineering"
] ]
dependencies = [ dependencies = [
"tmtccmd ~= 8.1", "tmtccmd~=8.2.0",
# "tmtccmd @ git+https://github.com/robamu-org/tmtccmd@main", "cfdp-py~=0.5.1",
"cfdp-py>=0.4, <=0.5",
"python-dateutil ~= 2.8", "python-dateutil ~= 2.8",
] ]