Skip to content

Commit

Permalink
Merge pull request #166 from robamu-org/prep-v8.1.1
Browse files Browse the repository at this point in the history
prep patch v8.1.1
  • Loading branch information
robamu authored Jan 17, 2025
2 parents 9e3070c + bb7c03a commit eab89cc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Starting from v4.0.0, this project adheres to [Semantic Versioning](http://semve

# [unreleased]

# [v8.1.1] 2025-01-17

- Bump allowed `cfdp-py` range to `<=v0.5`

# [v8.1.0] 2025-01-15

- Drop support for EOL Python 3.8. Minimum supported Python version is now 3.9
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "tmtccmd"
description = "TMTC Commander Core"
readme = "README.md"
version = "8.1.0"
version = "8.1.1"
requires-python = ">=3.9"
license = {text = "Apache-2.0 or MIT" }
authors = [
Expand Down Expand Up @@ -37,7 +37,7 @@ dependencies = [
"pyserial~=3.5",
"dle-encoder~=0.2.3",
"spacepackets>=0.24.0, <=0.27",
"cfdp-py>=0.1.1, <=0.4",
"cfdp-py>=0.1.1, <=0.5",
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tests/tm/test_srv17.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def tm_func(raw_telemetry: bytearray):
return Service17Tm.unpack(data=raw_telemetry, timestamp_len=7)

self.assertRaises(ValueError, tm_func, bytearray())
self.assertRaises(ValueError, tm_func, None)
self.assertRaises((TypeError, ValueError), tm_func, None)

pus_17_telemetry = Service17Tm.unpack(data=self.pus_17_raw, timestamp_len=7)
self.assertTrue(pus_17_telemetry.service == 17)
Expand Down

0 comments on commit eab89cc

Please sign in to comment.