Skip to content

Commit

Permalink
Merge pull request #36 from us-irs/prep_v0.18.0
Browse files Browse the repository at this point in the history
prep v0.18.0
  • Loading branch information
robamu committed Sep 8, 2023
2 parents a11376f + ca1be29 commit 299deb2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
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.18.0] 2023-09-08

## Changed

- The `parse_space_packets` function analysis queue argument is now expected to be filled
Expand Down
3 changes: 1 addition & 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 = "spacepackets"
description = "Various CCSDS and ECSS packet implementations"
readme = "README.md"
version = "0.18.0rc1"
version = "0.18.0"
requires-python = ">=3.8"
license = {text = "Apache-2.0"}
authors = [
Expand All @@ -20,7 +20,6 @@ classifiers = [
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Communications",
Expand Down
2 changes: 1 addition & 1 deletion release-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The steps shown here are for Ubuntu/MacOS.
with date and new `unreleased`section.
4. Run tests with `pytest .`
5. Run auto-formatter with `black .`
6. Run linter with `flake8 .`
6. Run linter with `ruff .`
7. Wait for CI/CD results. This also runs the tests on different operating systems

# Release
Expand Down
3 changes: 2 additions & 1 deletion spacepackets/ecss/tm.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,8 @@ def __str__(self):

def __repr__(self):
return (
f"{self.__class__.__name__}.from_composite_fields({self.__class__.__name__}(sp_header={self.space_packet_header!r},"
f"{self.__class__.__name__}.from_composite_fields({self.__class__.__name__}"
f"(sp_header={self.space_packet_header!r},"
f" sec_header={self.pus_tm_sec_header!r}, tm_data={self.tm_data!r}"
)

Expand Down

0 comments on commit 299deb2

Please sign in to comment.