hyperborea 2.1.2__tar.gz → 2.1.3__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 (35) hide show
  1. {hyperborea-2.1.2 → hyperborea-2.1.3}/LICENSE.txt +1 -1
  2. {hyperborea-2.1.2/hyperborea.egg-info → hyperborea-2.1.3}/PKG-INFO +2 -1
  3. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/version.py +3 -3
  4. {hyperborea-2.1.2 → hyperborea-2.1.3/hyperborea.egg-info}/PKG-INFO +2 -1
  5. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea.egg-info/SOURCES.txt +2 -0
  6. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea.egg-info/requires.txt +1 -0
  7. hyperborea-2.1.3/hyperborea.egg-info/scm_file_list.json +36 -0
  8. hyperborea-2.1.3/hyperborea.egg-info/scm_version.json +8 -0
  9. {hyperborea-2.1.2 → hyperborea-2.1.3}/mypy.ini +1 -0
  10. {hyperborea-2.1.2 → hyperborea-2.1.3}/pyproject.toml +18 -4
  11. {hyperborea-2.1.2 → hyperborea-2.1.3}/MANIFEST.in +0 -0
  12. {hyperborea-2.1.2 → hyperborea-2.1.3}/README.md +0 -0
  13. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/__init__.py +0 -0
  14. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/dark_mode.py +0 -0
  15. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/device_info_dialog.py +0 -0
  16. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/download.py +0 -0
  17. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/event_database.py +0 -0
  18. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/namedprocess.py +0 -0
  19. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/preferences.py +0 -0
  20. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/py.typed +0 -0
  21. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/ringbuffer.py +0 -0
  22. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/setting_widget.py +0 -0
  23. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/test_ringbuffer.py +0 -0
  24. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/ui/__init__.py +0 -0
  25. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/ui/ui_device_info_dialog.py +0 -0
  26. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/ui/ui_unit_preferences_widget.py +0 -0
  27. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/ui/ui_unit_selection_dialog.py +0 -0
  28. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/unit_formatter_spinbox.py +0 -0
  29. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/unit_menu.py +0 -0
  30. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/unit_preferences.py +0 -0
  31. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea/unit_selection_dialog.py +0 -0
  32. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea.egg-info/dependency_links.txt +0 -0
  33. {hyperborea-2.1.2 → hyperborea-2.1.3}/hyperborea.egg-info/top_level.txt +0 -0
  34. {hyperborea-2.1.2 → hyperborea-2.1.3}/setup.cfg +0 -0
  35. {hyperborea-2.1.2 → hyperborea-2.1.3}/setup.py +0 -0
@@ -1,4 +1,4 @@
1
- Copyright (c) 2025, Suprock Technologies, LLC
1
+ Copyright (c) 2026, Suprock Technologies, LLC
2
2
 
3
3
  Permission to use, copy, modify, and/or distribute this software for any
4
4
  purpose with or without fee is hereby granted, provided that the above
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hyperborea
3
- Version: 2.1.2
3
+ Version: 2.1.3
4
4
  Summary: Utility library for streaming from Asphodel devices
5
5
  Author-email: Suprock Technologies <inquiries@suprocktech.com>
6
6
  License-Expression: ISC
@@ -11,6 +11,7 @@ Description-Content-Type: text/markdown
11
11
  License-File: LICENSE.txt
12
12
  Requires-Dist: asphodel>=2.1.1
13
13
  Requires-Dist: numpy
14
+ Requires-Dist: packaging
14
15
  Requires-Dist: PySide6-Essentials
15
16
  Requires-Dist: requests
16
17
  Requires-Dist: setproctitle
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
18
18
  commit_id: str | None
19
19
  __commit_id__: str | None
20
20
 
21
- __version__ = version = '2.1.2'
22
- __version_tuple__ = version_tuple = (2, 1, 2)
21
+ __version__ = version = '2.1.3'
22
+ __version_tuple__ = version_tuple = (2, 1, 3)
23
23
 
24
- __commit_id__ = commit_id = 'gbfe5b5e65'
24
+ __commit_id__ = commit_id = 'gbcab0f4e4'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hyperborea
3
- Version: 2.1.2
3
+ Version: 2.1.3
4
4
  Summary: Utility library for streaming from Asphodel devices
5
5
  Author-email: Suprock Technologies <inquiries@suprocktech.com>
6
6
  License-Expression: ISC
@@ -11,6 +11,7 @@ Description-Content-Type: text/markdown
11
11
  License-File: LICENSE.txt
12
12
  Requires-Dist: asphodel>=2.1.1
13
13
  Requires-Dist: numpy
14
+ Requires-Dist: packaging
14
15
  Requires-Dist: PySide6-Essentials
15
16
  Requires-Dist: requests
16
17
  Requires-Dist: setproctitle
@@ -24,6 +24,8 @@ hyperborea.egg-info/PKG-INFO
24
24
  hyperborea.egg-info/SOURCES.txt
25
25
  hyperborea.egg-info/dependency_links.txt
26
26
  hyperborea.egg-info/requires.txt
27
+ hyperborea.egg-info/scm_file_list.json
28
+ hyperborea.egg-info/scm_version.json
27
29
  hyperborea.egg-info/top_level.txt
28
30
  hyperborea/ui/__init__.py
29
31
  hyperborea/ui/ui_device_info_dialog.py
@@ -1,5 +1,6 @@
1
1
  asphodel>=2.1.1
2
2
  numpy
3
+ packaging
3
4
  PySide6-Essentials
4
5
  requests
5
6
  setproctitle
@@ -0,0 +1,36 @@
1
+ {
2
+ "files": [
3
+ "MANIFEST.in",
4
+ "pyproject.toml",
5
+ "setup.py",
6
+ "update_ui.py",
7
+ "LICENSE.txt",
8
+ ".gitignore",
9
+ "mypy.ini",
10
+ "README.md",
11
+ "bitbucket-pipelines.yml",
12
+ ".vscode/settings.json",
13
+ "hyperborea/device_info_dialog.py",
14
+ "hyperborea/unit_formatter_spinbox.py",
15
+ "hyperborea/unit_selection_dialog.py",
16
+ "hyperborea/test_ringbuffer.py",
17
+ "hyperborea/preferences.py",
18
+ "hyperborea/__init__.py",
19
+ "hyperborea/dark_mode.py",
20
+ "hyperborea/download.py",
21
+ "hyperborea/py.typed",
22
+ "hyperborea/event_database.py",
23
+ "hyperborea/ringbuffer.py",
24
+ "hyperborea/unit_preferences.py",
25
+ "hyperborea/unit_menu.py",
26
+ "hyperborea/setting_widget.py",
27
+ "hyperborea/namedprocess.py",
28
+ "hyperborea/ui/unit_preferences_widget.ui",
29
+ "hyperborea/ui/ui_unit_selection_dialog.py",
30
+ "hyperborea/ui/__init__.py",
31
+ "hyperborea/ui/unit_selection_dialog.ui",
32
+ "hyperborea/ui/ui_unit_preferences_widget.py",
33
+ "hyperborea/ui/ui_device_info_dialog.py",
34
+ "hyperborea/ui/device_info_dialog.ui"
35
+ ]
36
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "tag": "2.1.3",
3
+ "distance": 0,
4
+ "node": "gbcab0f4e4ac4a33662b79f10f30868dc9eacc813",
5
+ "dirty": false,
6
+ "branch": "master",
7
+ "node_date": "2026-06-25"
8
+ }
@@ -7,6 +7,7 @@ check_untyped_defs = True
7
7
  warn_return_any = True
8
8
  no_implicit_optional = True
9
9
  strict = True
10
+ python_version = 3.10
10
11
 
11
12
  [mypy-hyperborea.ui.*]
12
13
  ignore_errors = True
@@ -1,5 +1,5 @@
1
1
  [build-system]
2
- requires = ["setuptools>=80", "wheel", "setuptools_scm>=8"]
2
+ requires = ["setuptools>=80", "setuptools_scm>=9.2"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
@@ -9,12 +9,15 @@ description="Utility library for streaming from Asphodel devices"
9
9
  readme = "README.md"
10
10
  license = "ISC"
11
11
  license-files = ["LICENSE.txt"]
12
- authors = [{ name = "Suprock Technologies", email = "inquiries@suprocktech.com" }]
12
+ authors = [
13
+ { name = "Suprock Technologies", email = "inquiries@suprocktech.com" },
14
+ ]
13
15
  requires-python = ">=3.10"
14
16
  keywords = ["asphodel", "suprock", "apd"]
15
17
  dependencies = [
16
18
  "asphodel>=2.1.1",
17
19
  "numpy",
20
+ "packaging",
18
21
  "PySide6-Essentials",
19
22
  "requests",
20
23
  "setproctitle",
@@ -24,9 +27,20 @@ dependencies = [
24
27
  Repository = "https://bitbucket.org/suprocktech/hyperborea"
25
28
 
26
29
  [tool.setuptools_scm]
27
- write_to = "hyperborea/version.py"
30
+ version_file = "hyperborea/version.py"
31
+ local_scheme = "no-local-version"
28
32
 
29
33
  [tool.isort]
30
- known_first_party = ["acheron", "asphodel", "asphodeltest", "firmutil", "hyperborea", "lemuria", "mondo"]
34
+ known_first_party = [
35
+ "acheron",
36
+ "asphodel",
37
+ "asphodeltest",
38
+ "firmutil",
39
+ "hyperborea",
40
+ "lemuria",
41
+ "mondo",
42
+ "stygian",
43
+ "stygian_compressor",
44
+ ]
31
45
  force_sort_within_sections = true
32
46
  honor_noqa = true
File without changes
File without changes
File without changes
File without changes