pyTRACTnmr 0.1.2b3__tar.gz → 0.1.2b4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyTRACTnmr
3
- Version: 0.1.2b3
3
+ Version: 0.1.2b4
4
4
  Summary: A simple gui based application to process and analyse TRACT data from NMR spectroscopy.
5
5
  Project-URL: Homepage, https://github.com/debadutta-patra/pyTRACTnmr
6
6
  Project-URL: Repository, https://github.com/debadutta-patra/pyTRACTnmr
@@ -14,6 +14,7 @@ Requires-Dist: pyside6-stubs>=6.7.3.0
14
14
  Requires-Dist: pyside6>=6.10.2
15
15
  Requires-Dist: scipy-stubs>=1.17.0.2
16
16
  Requires-Dist: scipy>=1.17.0
17
+ Requires-Dist: typing-extensions>=4.0.0
17
18
  Description-Content-Type: text/markdown
18
19
 
19
20
  # pyTRACTnmr
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pyTRACTnmr"
3
- version = "0.1.2b3"
3
+ version = "0.1.2b4"
4
4
  description = "A simple gui based application to process and analyse TRACT data from NMR spectroscopy."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.14"
@@ -12,6 +12,7 @@ dependencies = [
12
12
  "pyside6-stubs>=6.7.3.0",
13
13
  "scipy>=1.17.0",
14
14
  "scipy-stubs>=1.17.0.2",
15
+ "typing-extensions>=4.0.0",
15
16
  ]
16
17
 
17
18
  [project.urls]
@@ -3,7 +3,7 @@ from PySide6.QtWidgets import QApplication
3
3
 
4
4
  try:
5
5
  from window import TractApp # type: ignore
6
- except ImportError:
6
+ except ModuleNotFoundError:
7
7
  from .window import TractApp # type: ignore
8
8
 
9
9
 
@@ -31,13 +31,10 @@ from matplotlib.widgets import SpanSelector
31
31
  try:
32
32
  from widgets import MplCanvas, CustomNavigationToolbar # type: ignore
33
33
  import processing # type: ignore
34
- except ImportError:
34
+ except ModuleNotFoundError:
35
35
  from .widgets import MplCanvas, CustomNavigationToolbar # type: ignore
36
36
  from . import processing # type: ignore
37
37
 
38
-
39
-
40
-
41
38
  class TractApp(QMainWindow):
42
39
  def __init__(self):
43
40
  super().__init__()
@@ -400,7 +400,7 @@ wheels = [
400
400
 
401
401
  [[package]]
402
402
  name = "pytractnmr"
403
- version = "0.1.2b3"
403
+ version = "0.1.2b4"
404
404
  source = { editable = "." }
405
405
  dependencies = [
406
406
  { name = "matplotlib" },
@@ -410,6 +410,7 @@ dependencies = [
410
410
  { name = "pyside6-stubs" },
411
411
  { name = "scipy" },
412
412
  { name = "scipy-stubs" },
413
+ { name = "typing-extensions" },
413
414
  ]
414
415
 
415
416
  [package.metadata]
@@ -421,6 +422,7 @@ requires-dist = [
421
422
  { name = "pyside6-stubs", specifier = ">=6.7.3.0" },
422
423
  { name = "scipy", specifier = ">=1.17.0" },
423
424
  { name = "scipy-stubs", specifier = ">=1.17.0.2" },
425
+ { name = "typing-extensions", specifier = ">=4.0.0" },
424
426
  ]
425
427
 
426
428
  [[package]]
File without changes
File without changes
File without changes