From 7861717cc3c18c40be3f2e1851d0f2cd74f50e61 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 27 Aug 2024 15:23:27 +0200 Subject: [PATCH] increase allowed cfdp-py version range --- CHANGELOG.md | 6 ++++++ pyproject.toml | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 098fb076..48aebb85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ Starting from v4.0.0, this project adheres to [Semantic Versioning](http://semve # [unreleased] +# [v8.0.2] 2024-08-27 + +## Changed + +Increase allowed version range for `cfdp-py` dependency to `>=0.1.0, <=0.3`. + # [v8.0.1] 2024-05-08 ## Fixed diff --git a/pyproject.toml b/pyproject.toml index 3a1841ef..c0bfdd43 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "tmtccmd" description = "TMTC Commander Core" readme = "README.md" -version = "8.0.1" +version = "8.0.2" requires-python = ">=3.8" license = {text = "Apache-2.0 or MIT" } authors = [ @@ -37,7 +37,7 @@ dependencies = [ "pyserial~=3.5", "dle-encoder~=0.2.3", "spacepackets>=0.24.0, <0.25", - "cfdp-py~=0.1.1", + "cfdp-py>=0.1.1, <=0.3", # "spacepackets @ git+https://github.com/us-irs/spacepackets-py@main" ]