Skip to content

Commit 5810324

Browse files
Merge remote-tracking branch 'proplib-template/main' into InitialRelease
2 parents ee0bf10 + 2ba777c commit 5810324

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

.pre-commit-config.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
default_language_version:
2-
python: python3.9
31
repos:
42
- repo: https://github.com/pre-commit/pre-commit-hooks
53
rev: v5.0.0

.zenodo.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"creators": [
3+
{
4+
"orcid": "TODO-TEMPLATE",
5+
"affiliation": "U.S. Department of Commerce, National Telecommunications and Information Administration, Institute for Telecommunication Sciences",
6+
"name": "TODO-TEMPLATE"
7+
}
8+
],
9+
"license": "NTIA Public Domain",
10+
"title": "TODO-TEMPLATE, Python Wrapper",
11+
"upload_type": "software",
12+
"version": "TODO-TEMPLATE",
13+
"keywords": ["TODO-TEMPLATE"],
14+
"communities": [
15+
{"identifier": "its-proplib"}
16+
]
17+
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ compiling it yourself from the C++ source code. Either way, ensure that the shar
5151
(`.dll`, `.dylib`, or `.so` file) is placed in `src/ITS/ITU/PSeries/P2108/`, alongside `__init__.py`.
5252

5353
Below are the steps to build and install the Python package from source, including
54-
optionally compiling the shared library from the C++ source code. Working installations of Git and
54+
compiling the library from the C++ source code. Working installations of Git and
5555
Python (3.9 or above) are required. If compiling the shared library, CMake and a C++ compiler
5656
are also required.
5757

tests/test_p2108.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
ABSTOL__DB = 0.1 # Absolute tolerance, in dB, to ensure outputs match expected value
1212

1313

14+
# TODO-TEMPLATE: Update CSV reader based on test data CSV structure
1415
def read_csv_test_data(filename: str):
1516
with open(TEST_DATA_DIR / filename) as f:
1617
reader = csv.reader(f)

0 commit comments

Comments
 (0)