-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from NTIA/drop-python-3.8
Drop support for Python 3.8, add support for Python 3.12
- Loading branch information
Showing
8 changed files
with
27 additions
and
25 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -57,7 +57,7 @@ Tektronix RSA devices, along with supporting test code | |
|
||
## Running in SCOS Sensor | ||
|
||
Requires `git`, `python>=3.8`, `pip>=18.1`, and `pip-tools>=6.6.2` | ||
Requires `git`, `python>=3.9`, `pip>=18.1`, and `pip-tools>=6.6.2` | ||
|
||
Below are the steps to run SCOS Sensor with the SCOS Tektronix RSA plugin: | ||
|
||
|
@@ -107,7 +107,8 @@ file: | |
(such as `scos_usrp`), then add the `scos_tekrsa` dependency: | ||
|
||
```text | ||
scos_tekrsa @ git+https://github.com/NTIA/[email protected] | ||
# Be sure to provide the correct tag for the desired version | ||
scos_tekrsa @ git+https://github.com/NTIA/[email protected] | ||
``` | ||
|
||
1. Compile requirements by running: | ||
|
@@ -149,7 +150,7 @@ from Tektronix. Place the three files `libRSA_API.so`, `libcyusb_shared.so`, and | |
|
||
Set up a development environment using a tool like | ||
[Conda](https://docs.conda.io/en/latest/) | ||
or [venv](https://docs.python.org/3/library/venv.html#module-venv), with `python>=3.8`. | ||
or [venv](https://docs.python.org/3/library/venv.html#module-venv), with `python>=3.9`. | ||
Then, from the cloned directory, install the development dependencies by running: | ||
|
||
```bash | ||
|
@@ -195,7 +196,9 @@ Registry, run: | |
```bash | ||
docker build -f docker/Dockerfile -t tekrsa_usb . | ||
docker tag tekrsa_usb ghcr.io/ntia/scos-tekrsa/tekrsa_usb:X.X.X | ||
docker tag tekrsa_usb ghcr.io/ntia/scos-tekrsa/tekrsa_usb:latest | ||
docker push ghcr.io/ntia/scos-tekrsa/tekrsa_usb:X.X.X | ||
docker push ghcr.io/ntia/scos-tekrsa/tekrsa_usb:latest | ||
``` | ||
|
||
### Running Tests | ||
|
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,2 +1 @@ | ||
__version__ = "7.0.1" | ||
|
||
__version__ = "8.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