pychemstation 0.5.7__tar.gz → 0.5.8__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 (40) hide show
  1. {pychemstation-0.5.7 → pychemstation-0.5.8}/PKG-INFO +1 -1
  2. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/control/hplc.py +2 -2
  3. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation.egg-info/PKG-INFO +1 -1
  4. {pychemstation-0.5.7 → pychemstation-0.5.8}/setup.py +1 -1
  5. {pychemstation-0.5.7 → pychemstation-0.5.8}/LICENSE +0 -0
  6. {pychemstation-0.5.7 → pychemstation-0.5.8}/README.md +0 -0
  7. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/__init__.py +0 -0
  8. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/analysis/__init__.py +0 -0
  9. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/analysis/base_spectrum.py +0 -0
  10. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/analysis/spec_utils.py +0 -0
  11. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/analysis/utils.py +0 -0
  12. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/control/__init__.py +0 -0
  13. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/control/controllers/__init__.py +0 -0
  14. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/control/controllers/comm.py +0 -0
  15. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/control/controllers/method.py +0 -0
  16. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/control/controllers/sequence.py +0 -0
  17. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/control/controllers/table_controller.py +0 -0
  18. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/generated/__init__.py +0 -0
  19. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/generated/dad_method.py +0 -0
  20. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/generated/pump_method.py +0 -0
  21. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/utils/__init__.py +0 -0
  22. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/utils/chromatogram.py +0 -0
  23. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/utils/macro.py +0 -0
  24. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/utils/method_types.py +0 -0
  25. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/utils/parsing.py +0 -0
  26. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/utils/sequence_types.py +0 -0
  27. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/utils/table_types.py +0 -0
  28. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation/utils/tray_types.py +0 -0
  29. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation.egg-info/SOURCES.txt +0 -0
  30. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation.egg-info/dependency_links.txt +0 -0
  31. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation.egg-info/requires.txt +0 -0
  32. {pychemstation-0.5.7 → pychemstation-0.5.8}/pychemstation.egg-info/top_level.txt +0 -0
  33. {pychemstation-0.5.7 → pychemstation-0.5.8}/pyproject.toml +0 -0
  34. {pychemstation-0.5.7 → pychemstation-0.5.8}/setup.cfg +0 -0
  35. {pychemstation-0.5.7 → pychemstation-0.5.8}/tests/__init__.py +0 -0
  36. {pychemstation-0.5.7 → pychemstation-0.5.8}/tests/constants.py +0 -0
  37. {pychemstation-0.5.7 → pychemstation-0.5.8}/tests/test_comb.py +0 -0
  38. {pychemstation-0.5.7 → pychemstation-0.5.8}/tests/test_comm.py +0 -0
  39. {pychemstation-0.5.7 → pychemstation-0.5.8}/tests/test_method.py +0 -0
  40. {pychemstation-0.5.7 → pychemstation-0.5.8}/tests/test_sequence.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pychemstation
3
- Version: 0.5.7
3
+ Version: 0.5.8
4
4
  Summary: Library to interact with Chemstation software, primarily used in Hein lab
5
5
  Home-page: https://gitlab.com/heingroup/device-api/pychemstation
6
6
  Author: Lucy Hao
@@ -42,12 +42,12 @@ class HPLCController:
42
42
  self.method_controller = MethodController(controller=self.comm,
43
43
  src=method_dir,
44
44
  data_dir=data_dir,
45
- table=self.METHOD_TIMETABLE) if not offline else None
45
+ table=self.METHOD_TIMETABLE)
46
46
  self.sequence_controller = SequenceController(controller=self.comm,
47
47
  src=sequence_dir,
48
48
  data_dir=data_dir,
49
49
  table=self.SEQUENCE_TABLE,
50
- method_dir=method_dir) if not offline else None
50
+ method_dir=method_dir)
51
51
 
52
52
  def send(self, cmd: Union[Command, str]):
53
53
  if not self.comm:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pychemstation
3
- Version: 0.5.7
3
+ Version: 0.5.8
4
4
  Summary: Library to interact with Chemstation software, primarily used in Hein lab
5
5
  Home-page: https://gitlab.com/heingroup/device-api/pychemstation
6
6
  Author: Lucy Hao
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
5
5
 
6
6
  setuptools.setup(
7
7
  name="pychemstation",
8
- version="0.5.7",
8
+ version="0.5.8",
9
9
  author="Lucy Hao",
10
10
  author_email="lhao03@student.ubc.ca",
11
11
  description="Library to interact with Chemstation software, primarily used in Hein lab",
File without changes
File without changes
File without changes