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.
Files changed (21) hide show
  1. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/PKG-INFO +1 -1
  2. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/pyproject.toml +1 -1
  3. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510_adev.py +2 -2
  4. keithley_tempcontrol-0.17.2/justfile +0 -25
  5. keithley_tempcontrol-0.17.2/service_registry.db +0 -0
  6. keithley_tempcontrol-0.17.2/src/egse/tempcontrol/keithley/daq6510_acs.py +0 -3
  7. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/.gitignore +0 -0
  8. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/README.md +0 -0
  9. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/noxfile.py +0 -0
  10. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/__init__.py +0 -0
  11. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510.py +0 -0
  12. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510.yaml +0 -0
  13. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510_cs.py +0 -0
  14. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510_dev.py +0 -0
  15. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510_mon.py +0 -0
  16. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510_protocol.py +0 -0
  17. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/egse/tempcontrol/keithley/daq6510_sim.py +0 -0
  18. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/keithley_tempcontrol/__init__.py +0 -0
  19. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/keithley_tempcontrol/cgse_explore.py +0 -0
  20. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/keithley_tempcontrol/cgse_services.py +0 -0
  21. {keithley_tempcontrol-0.17.2 → keithley_tempcontrol-0.17.4}/src/keithley_tempcontrol/settings.yaml +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: keithley-tempcontrol
3
- Version: 0.17.2
3
+ Version: 0.17.4
4
4
  Summary: Keithley Temperature Control for CGSE
5
5
  Author: IvS KU Leuven
6
6
  Maintainer-email: Rik Huygen <rik.huygen@kuleuven.be>, Sara Regibo <sara.regibo@kuleuven.be>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "keithley-tempcontrol"
3
- version = "0.17.2"
3
+ version = "0.17.4"
4
4
  description = "Keithley Temperature Control for CGSE"
5
5
  authors = [
6
6
  {name = "IvS KU Leuven"}
@@ -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
@@ -1,3 +0,0 @@
1
- """
2
- The asynchronous control server for the DAQ6510 device.
3
- """