pyGCG 0.7.9__tar.gz → 1.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 (29) hide show
  1. {pygcg-0.7.9 → pygcg-1.4}/PKG-INFO +1 -1
  2. {pygcg-0.7.9 → pygcg-1.4}/pyGCG.egg-info/PKG-INFO +1 -1
  3. {pygcg-0.7.9 → pygcg-1.4}/pygcg/_version.py +2 -2
  4. {pygcg-0.7.9 → pygcg-1.4}/pygcg/tabs/spectrum.py +1 -0
  5. {pygcg-0.7.9 → pygcg-1.4}/.github/workflows/publish-to-pypi.yml +0 -0
  6. {pygcg-0.7.9 → pygcg-1.4}/.gitignore +0 -0
  7. {pygcg-0.7.9 → pygcg-1.4}/.pre-commit-config.yaml +0 -0
  8. {pygcg-0.7.9 → pygcg-1.4}/LICENCE.txt +0 -0
  9. {pygcg-0.7.9 → pygcg-1.4}/README.md +0 -0
  10. {pygcg-0.7.9 → pygcg-1.4}/pyGCG.egg-info/SOURCES.txt +0 -0
  11. {pygcg-0.7.9 → pygcg-1.4}/pyGCG.egg-info/dependency_links.txt +0 -0
  12. {pygcg-0.7.9 → pygcg-1.4}/pyGCG.egg-info/requires.txt +0 -0
  13. {pygcg-0.7.9 → pygcg-1.4}/pyGCG.egg-info/top_level.txt +0 -0
  14. {pygcg-0.7.9 → pygcg-1.4}/pygcg/GUI_main.py +0 -0
  15. {pygcg-0.7.9 → pygcg-1.4}/pygcg/__init__.py +0 -0
  16. {pygcg-0.7.9 → pygcg-1.4}/pygcg/example_config.toml +0 -0
  17. {pygcg-0.7.9 → pygcg-1.4}/pygcg/tabs/__init__.py +0 -0
  18. {pygcg-0.7.9 → pygcg-1.4}/pygcg/tabs/beams.py +0 -0
  19. {pygcg-0.7.9 → pygcg-1.4}/pygcg/utils/__init__.py +0 -0
  20. {pygcg-0.7.9 → pygcg-1.4}/pygcg/utils/icon_checkbox.py +0 -0
  21. {pygcg-0.7.9 → pygcg-1.4}/pygcg/utils/misc.py +0 -0
  22. {pygcg-0.7.9 → pygcg-1.4}/pygcg/utils/toolbar.py +0 -0
  23. {pygcg-0.7.9 → pygcg-1.4}/pygcg/windows/__init__.py +0 -0
  24. {pygcg-0.7.9 → pygcg-1.4}/pygcg/windows/base_window.py +0 -0
  25. {pygcg-0.7.9 → pygcg-1.4}/pygcg/windows/comments.py +0 -0
  26. {pygcg-0.7.9 → pygcg-1.4}/pygcg/windows/search.py +0 -0
  27. {pygcg-0.7.9 → pygcg-1.4}/pygcg/windows/settings.py +0 -0
  28. {pygcg-0.7.9 → pygcg-1.4}/pyproject.toml +0 -0
  29. {pygcg-0.7.9 → pygcg-1.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyGCG
3
- Version: 0.7.9
3
+ Version: 1.4
4
4
  Summary: A GUI to aid in viewing and classifying NIRISS data products from GLASS-JWST.
5
5
  Author-email: Peter Watson <peter.watson+pygcg@inaf.it>
6
6
  Project-URL: Homepage, https://github.com/PJ-Watson/pyGCG
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyGCG
3
- Version: 0.7.9
3
+ Version: 1.4
4
4
  Summary: A GUI to aid in viewing and classifying NIRISS data products from GLASS-JWST.
5
5
  Author-email: Peter Watson <peter.watson+pygcg@inaf.it>
6
6
  Project-URL: Homepage, https://github.com/PJ-Watson/pyGCG
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '0.7.9'
16
- __version_tuple__ = version_tuple = (0, 7, 9)
15
+ __version__ = version = '1.4'
16
+ __version_tuple__ = version_tuple = (1, 4)
@@ -910,6 +910,7 @@ class ImagesFrame(ctk.CTkFrame):
910
910
  print(f"{p} image not found.")
911
911
  self.rgb_paths.append(None)
912
912
  else:
913
+ rgb_path.sort(reverse=True)
913
914
  self.rgb_paths.append(rgb_path[0])
914
915
 
915
916
  def plot_failed(self, ax, plot_name, text=None):
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes