-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into improve-namespaces
- Loading branch information
Showing
37 changed files
with
2,031 additions
and
574 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
## Code changes will send a PR to the following users | ||
* @medley56 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Title of PR | ||
|
||
Brief description of changes. If you write good commit messages, put the concatenated list of messages here. | ||
|
||
|
||
## Checklist | ||
- [ ] Changes are fully implemented without dangling issues or TODO items | ||
- [ ] Deprecated/superseded code is removed or marked with deprecation warning | ||
- [ ] Current dependencies have been properly specified and old dependencies removed | ||
- [ ] New code/functionality has accompanying tests and any old tests have been updated to match any new assumptions | ||
- [ ] The changelog.md has been updated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Run PyCodeStyle | ||
on: pull_request | ||
jobs: | ||
pylint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repo | ||
uses: actions/checkout@v4 | ||
- name: Build Docker image | ||
run: docker build . --file Dockerfile --target style --tag space-packet-parser-style:latest | ||
- name: Run PyCodeStyle in Docker | ||
run: docker run -i space-packet-parser-style:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Run Pylint | ||
on: pull_request | ||
jobs: | ||
pylint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repo | ||
uses: actions/checkout@v4 | ||
- name: Build Docker image | ||
run: docker build . --file Dockerfile --target lint --tag space-packet-parser-lint:latest | ||
- name: Run Pylint in Docker | ||
run: docker run -i space-packet-parser-lint:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,10 @@ | ||
name: Test with Matrix of Python Versions | ||
on: | ||
push: | ||
branches: [ "main", "dev" ] | ||
pull_request: | ||
branches: [ "main", "dev" ] | ||
on: pull_request | ||
jobs: | ||
python-version-matrix: | ||
strategy: | ||
matrix: | ||
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | ||
bitstring-version: ["", "3.0.0", "4.1.2"] | ||
uses: ./.github/workflows/test-python-version.yml | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
bitstring-version: ${{ matrix.bitstring-version }} | ||
python-version: ${{ matrix.python-version }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
cff-version: 1.2.0 | ||
title: 'space_packet_parser' | ||
type: software | ||
version: '4.1.0' | ||
version: '4.2.0' | ||
description: A CCSDS telemetry packet decoding library based on the XTCE packet format description standard. | ||
license: BSD-3-Clause | ||
abstract: The space_packet_parser Python library is a generalized, configurable packet decoding library for CCSDS telemetry | ||
|
@@ -21,9 +21,12 @@ authors: | |
- email: [email protected] | ||
name: Michael Chambliss | ||
orcid: "0009-0003-7493-0542" | ||
- email: [email protected] | ||
name: Greg Lucas | ||
orcid: "0000-0003-1331-1863" | ||
maintainers: | ||
- email: [email protected] | ||
name: Gavin Medley | ||
orcid: "0000-0002-3520-9715" | ||
repository-code: "https://github.com/medley56/space_packet_parser" | ||
url: "TBD" | ||
url: "https://space-packet-parser.readthedocs.io" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,52 @@ | ||
version: '3' | ||
|
||
services: | ||
lint: | ||
image: space-packets-linting:latest | ||
build: | ||
target: lint | ||
|
||
style: | ||
image: space-packets-style:latest | ||
build: | ||
target: style | ||
|
||
3.8-tests: | ||
image: space-packets-3.8-test:latest | ||
build: | ||
target: test | ||
args: | ||
- BASE_IMAGE_PYTHON_VERSION=3.8 | ||
|
||
3.9-tests: | ||
image: space-packets-3.9-test:latest | ||
build: | ||
target: test | ||
args: | ||
- BASE_IMAGE_PYTHON_VERSION=3.9 | ||
|
||
3.10-tests: | ||
image: space-packets-3.10-test:latest | ||
build: | ||
target: test | ||
args: | ||
- BASE_IMAGE_PYTHON_VERSION=3.10 | ||
|
||
3.11-tests: | ||
image: space-packets-3.11-test:latest | ||
build: | ||
target: test | ||
args: | ||
- BASE_IMAGE_PYTHON_VERSION=3.11 | ||
|
||
3.12-tests: | ||
image: space-packets-3.12-test:latest | ||
build: | ||
target: test | ||
args: | ||
- BASE_IMAGE_PYTHON_VERSION=3.12 | ||
|
||
3.11-tests-min-deps: | ||
image: space-packets-3.11-test:latest | ||
build: | ||
target: test | ||
args: | ||
- BASE_IMAGE_PYTHON_VERSION=3.11 | ||
- BITSTRING_VERSION=3.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: Contents: | ||
|
||
users.md | ||
developers.md | ||
changelog.md | ||
autoapi/index.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.