keithley-tempcontrol 0.17.2__tar.gz → 0.17.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/PKG-INFO +1 -1
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/pyproject.toml +1 -1
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510_adev.py +2 -2
- keithley_tempcontrol-0.17.2/justfile +0 -25
- keithley_tempcontrol-0.17.2/service_registry.db +0 -0
- keithley_tempcontrol-0.17.2/src/egse/tempcontrol/keithley/daq6510_acs.py +0 -3
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/.gitignore +0 -0
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/README.md +0 -0
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/noxfile.py +0 -0
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/__init__.py +0 -0
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510.py +0 -0
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510.yaml +0 -0
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510_cs.py +0 -0
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510_dev.py +0 -0
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510_mon.py +0 -0
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510_protocol.py +0 -0
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510_sim.py +0 -0
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/keithley_tempcontrol/__init__.py +0 -0
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/keithley_tempcontrol/cgse_explore.py +0 -0
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/keithley_tempcontrol/cgse_services.py +0 -0
- {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/keithley_tempcontrol/settings.yaml +0 -0
|
@@ -13,8 +13,8 @@ from egse.settings import Settings
|
|
|
13
13
|
|
|
14
14
|
dev_settings = Settings.load("Keithley DAQ6510")
|
|
15
15
|
|
|
16
|
-
DEV_HOST = dev_settings.get("HOSTNAME")
|
|
17
|
-
DEV_PORT = dev_settings.get("PORT")
|
|
16
|
+
DEV_HOST = dev_settings.get("HOSTNAME", "localhost")
|
|
17
|
+
DEV_PORT = dev_settings.get("PORT", 0)
|
|
18
18
|
DEVICE_NAME = dev_settings.get("DEVICE_NAME", "DAQ6510")
|
|
19
19
|
DEV_ID_VALIDATION = "DAQ6510"
|
|
20
20
|
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# If you don't have 'just' installed, install it with the following command:
|
|
2
|
-
#
|
|
3
|
-
# $ uv tool install rust-just
|
|
4
|
-
#
|
|
5
|
-
# The 'just' website: https://just.systems/man/en/
|
|
6
|
-
|
|
7
|
-
default:
|
|
8
|
-
@just --list
|
|
9
|
-
|
|
10
|
-
typecheck:
|
|
11
|
-
uv run --with mypy mypy -p egse --strict
|
|
12
|
-
|
|
13
|
-
test target="":
|
|
14
|
-
#!/usr/bin/env bash
|
|
15
|
-
if [ -z "{{target}}" ]; then
|
|
16
|
-
uv run pytest -v
|
|
17
|
-
else
|
|
18
|
-
uv run pytest -v -k {{target}}
|
|
19
|
-
fi
|
|
20
|
-
|
|
21
|
-
format:
|
|
22
|
-
uvx ruff format
|
|
23
|
-
|
|
24
|
-
check:
|
|
25
|
-
uvx ruff check --no-fix
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/keithley_tempcontrol/__init__.py
RENAMED
|
File without changes
|
{keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/keithley_tempcontrol/cgse_explore.py
RENAMED
|
File without changes
|
|
File without changes
|
{keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/keithley_tempcontrol/settings.yaml
RENAMED
|
File without changes
|