Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

# [unreleased]

# [v0.5.0] 2025-01-17

## Added

- Added `RestrictedFilestore` to limit the file access of the `NativeFilestore` to a specific
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sphinx-rtd-theme==2.0.0
sphinx-rtd-theme==3.0.2
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 = "cfdp-py"
description = "Library for high level CCSDS File Delivery Protocol (CFDP) components"
readme = "README.md"
version = "0.4.1"
version = "0.5.0"
requires-python = ">=3.9"
license = {text = "Apache-2.0"}
authors = [
Expand All @@ -27,7 +27,7 @@ classifiers = [
"Topic :: Scientific/Engineering"
]
dependencies = [
"spacepackets~=0.26.0",
"spacepackets>=0.26.0, <=0.27",
"crcmod~=1.7",
"deprecation~=2.1",
]
Expand Down
6 changes: 4 additions & 2 deletions src/cfdppy/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@

@dataclasses.dataclass
class PutRequest:
"""This is the base class modelling put request. You can create this class from the simplified
"""This is the base class modelling the CFDP put request.

You can create this class from the simplified
:py:class:`tmtccmd.config.defs.CfdpParams` class with the generic
:py:func:`tmtccmd.config.cfdp.generic_cfdp_params_to_put_request` API and/or all related
specific APIs.
specific APIs.
"""

destination_id: UnsignedByteField
Expand Down
Loading