PyThea 1.0.0__tar.gz → 1.2.0__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 (75) hide show
  1. pythea-1.2.0/.flake8 +15 -0
  2. {pythea-1.0.0 → pythea-1.2.0}/.readthedocs.yaml +9 -5
  3. {pythea-1.0.0 → pythea-1.2.0}/CHANGELOG.md +22 -0
  4. pythea-1.2.0/PKG-INFO +820 -0
  5. {pythea-1.0.0 → pythea-1.2.0}/PyThea/PyThea_app.py +3 -3
  6. pythea-1.2.0/PyThea/_version.py +34 -0
  7. {pythea-1.0.0 → pythea-1.2.0}/PyThea/extensions/Parker_spirals/utils.py +1 -1
  8. {pythea-1.0.0 → pythea-1.2.0}/PyThea/extensions/hek/utils.py +67 -37
  9. {pythea-1.0.0 → pythea-1.2.0}/PyThea/modules.py +3 -3
  10. {pythea-1.0.0 → pythea-1.2.0}/PyThea/pythea_cli.py +7 -1
  11. {pythea-1.0.0 → pythea-1.2.0}/PyThea/sunpy_dev/extern/sunkit_instruments/aia/utils.py +4 -3
  12. pythea-1.2.0/PyThea/test/figure_hashes.json +9 -0
  13. {pythea-1.0.0 → pythea-1.2.0}/PyThea/test/test_extension_utils.py +2 -2
  14. {pythea-1.0.0 → pythea-1.2.0}/PyThea/test/test_remote_clients.py +57 -17
  15. {pythea-1.0.0 → pythea-1.2.0}/PyThea/utils.py +4 -4
  16. pythea-1.2.0/PyThea.egg-info/PKG-INFO +820 -0
  17. {pythea-1.0.0 → pythea-1.2.0}/PyThea.egg-info/SOURCES.txt +2 -3
  18. pythea-1.2.0/PyThea.egg-info/requires.txt +32 -0
  19. {pythea-1.0.0 → pythea-1.2.0}/README.md +3 -3
  20. {pythea-1.0.0 → pythea-1.2.0}/README_pypi.md +3 -3
  21. pythea-1.2.0/pyproject.toml +87 -0
  22. pythea-1.2.0/pytest.ini +6 -0
  23. pythea-1.2.0/setup.cfg +4 -0
  24. pythea-1.2.0/setup.py +12 -0
  25. pythea-1.0.0/PKG-INFO +0 -159
  26. pythea-1.0.0/PyThea/_version.py +0 -16
  27. pythea-1.0.0/PyThea/test/figure_hashes.json +0 -9
  28. pythea-1.0.0/PyThea.egg-info/PKG-INFO +0 -159
  29. pythea-1.0.0/PyThea.egg-info/requires.txt +0 -24
  30. pythea-1.0.0/environment.yml +0 -30
  31. pythea-1.0.0/pyproject.toml +0 -6
  32. pythea-1.0.0/requirements.txt +0 -24
  33. pythea-1.0.0/setup.cfg +0 -44
  34. pythea-1.0.0/setup.py +0 -61
  35. {pythea-1.0.0 → pythea-1.2.0}/LICENSE.md +0 -0
  36. {pythea-1.0.0 → pythea-1.2.0}/MANIFEST.in +0 -0
  37. {pythea-1.0.0 → pythea-1.2.0}/PyThea/__init__.py +0 -0
  38. {pythea-1.0.0 → pythea-1.2.0}/PyThea/callbacks.py +0 -0
  39. {pythea-1.0.0 → pythea-1.2.0}/PyThea/config/__init__.py +0 -0
  40. {pythea-1.0.0 → pythea-1.2.0}/PyThea/config/app_styles.py +0 -0
  41. {pythea-1.0.0 → pythea-1.2.0}/PyThea/config/config_sliders.py +0 -0
  42. {pythea-1.0.0 → pythea-1.2.0}/PyThea/config/selected_bodies.py +0 -0
  43. {pythea-1.0.0 → pythea-1.2.0}/PyThea/config/selected_imagers.py +0 -0
  44. {pythea-1.0.0 → pythea-1.2.0}/PyThea/data/__init__.py +0 -0
  45. {pythea-1.0.0 → pythea-1.2.0}/PyThea/data/sample_data.py +0 -0
  46. {pythea-1.0.0 → pythea-1.2.0}/PyThea/extensions/LICENSE_gcs_python.md +0 -0
  47. {pythea-1.0.0 → pythea-1.2.0}/PyThea/extensions/Parker_spirals/__init__.py +0 -0
  48. {pythea-1.0.0 → pythea-1.2.0}/PyThea/extensions/__init__.py +0 -0
  49. {pythea-1.0.0 → pythea-1.2.0}/PyThea/extensions/buttons.py +0 -0
  50. {pythea-1.0.0 → pythea-1.2.0}/PyThea/extensions/hek/__init__.py +0 -0
  51. {pythea-1.0.0 → pythea-1.2.0}/PyThea/geometrical_models.py +0 -0
  52. {pythea-1.0.0 → pythea-1.2.0}/PyThea/sunpy_dev/__init__.py +0 -0
  53. {pythea-1.0.0 → pythea-1.2.0}/PyThea/sunpy_dev/extern/__init__.py +0 -0
  54. {pythea-1.0.0 → pythea-1.2.0}/PyThea/sunpy_dev/extern/sunkit_instruments/__init__.py +0 -0
  55. {pythea-1.0.0 → pythea-1.2.0}/PyThea/sunpy_dev/extern/sunkit_instruments/aia/__init__.py +0 -0
  56. {pythea-1.0.0 → pythea-1.2.0}/PyThea/sunpy_dev/extern/sunkit_instruments/lasco/__init__.py +0 -0
  57. {pythea-1.0.0 → pythea-1.2.0}/PyThea/sunpy_dev/extern/sunkit_instruments/lasco/utils.py +0 -0
  58. {pythea-1.0.0 → pythea-1.2.0}/PyThea/sunpy_dev/extern/sunkit_instruments/stereo/__init__.py +0 -0
  59. {pythea-1.0.0 → pythea-1.2.0}/PyThea/sunpy_dev/extern/sunkit_instruments/stereo/utils.py +0 -0
  60. {pythea-1.0.0 → pythea-1.2.0}/PyThea/sunpy_dev/map/__init__.py +0 -0
  61. {pythea-1.0.0 → pythea-1.2.0}/PyThea/sunpy_dev/map/maputils.py +0 -0
  62. {pythea-1.0.0 → pythea-1.2.0}/PyThea/test/Pythea_test.py +0 -0
  63. {pythea-1.0.0 → pythea-1.2.0}/PyThea/test/__init__.py +0 -0
  64. {pythea-1.0.0 → pythea-1.2.0}/PyThea/test/conftest.py +0 -0
  65. {pythea-1.0.0 → pythea-1.2.0}/PyThea/test/test_figures.py +0 -0
  66. {pythea-1.0.0 → pythea-1.2.0}/PyThea/test/test_geometrical_models.py +0 -0
  67. {pythea-1.0.0 → pythea-1.2.0}/PyThea/test/test_imports.py +0 -0
  68. {pythea-1.0.0 → pythea-1.2.0}/PyThea/test/test_utils.py +0 -0
  69. {pythea-1.0.0 → pythea-1.2.0}/PyThea/utils_database.py +0 -0
  70. {pythea-1.0.0 → pythea-1.2.0}/PyThea/version.py +0 -0
  71. {pythea-1.0.0 → pythea-1.2.0}/PyThea.egg-info/.DS_Store +0 -0
  72. {pythea-1.0.0 → pythea-1.2.0}/PyThea.egg-info/dependency_links.txt +0 -0
  73. {pythea-1.0.0 → pythea-1.2.0}/PyThea.egg-info/entry_points.txt +0 -0
  74. {pythea-1.0.0 → pythea-1.2.0}/PyThea.egg-info/not-zip-safe +0 -0
  75. {pythea-1.0.0 → pythea-1.2.0}/PyThea.egg-info/top_level.txt +0 -0
pythea-1.2.0/.flake8 ADDED
@@ -0,0 +1,15 @@
1
+ [flake8]
2
+ max-line-length = 110
3
+ select = E101,E11,E111,E112,E113,E121,E122,E123,E124,E125,E126,E127,E128,E129,E131,E133,E20,E211,E225,E231,E241,E242,E251,E252,E26,E265,E266,E27,E301,E302,E303,E304,E305,E306,E401,E402,E502,E701,E711,E712,E713,E714,E722,E731,E901,E902,F401,F822,F823,F841,W191,W291,W292,W293,W391,W601,W602,W603,W604,W605,W690,
4
+ exclude =
5
+ .git,
6
+ __pycache__,
7
+ docs,
8
+ build,
9
+ __init__.py
10
+ .fits,
11
+ .fts,
12
+ .fit,
13
+ .txt,
14
+ .md,
15
+ PyThea/extensions/
@@ -7,9 +7,9 @@ version: 2
7
7
 
8
8
  # Set the version of Python and other tools you might need
9
9
  build:
10
- os: ubuntu-22.04
10
+ os: ubuntu-lts-latest
11
11
  tools:
12
- python: "3.9"
12
+ python: "3.11"
13
13
  # You can also specify other tool versions:
14
14
  # nodejs: "16"
15
15
  # rust: "1.55"
@@ -17,7 +17,8 @@ build:
17
17
 
18
18
  # Build documentation in the docs/ directory with Sphinx
19
19
  sphinx:
20
- configuration: docs/source/conf.py
20
+ builder: html
21
+ configuration: docs/source/conf.py
21
22
 
22
23
  # If using Sphinx, optionally build your docs in additional formats such as PDF
23
24
  # formats:
@@ -25,5 +26,8 @@ sphinx:
25
26
 
26
27
  # Optionally declare the Python requirements required to build your docs
27
28
  python:
28
- install:
29
- - requirements: docs/source/requirements.txt
29
+ install:
30
+ - method: pip
31
+ extra_requirements:
32
+ - docs
33
+ path: .
@@ -1,3 +1,25 @@
1
+ # v1.1.0 (12-Feb-2025)
2
+
3
+ ## Minor Changes
4
+ - Change installation to pyproject.toml
5
+ - Updates dependences with sunpy>=7.0.1
6
+
7
+ ## Bug Fixes
8
+ - Fixes remote tests with the addition of new imagers
9
+ - Fixes bug with supplementary imager
10
+
11
+ # v1.1.0 (12-Feb-2025)
12
+
13
+ ## Minor Changes
14
+ - Updates the dependencies for sunpy>6.0
15
+ - Improves the utility of HEK events retrieval
16
+
17
+ ## Bug Fixes
18
+ - Fixes a flakes8 error for using bare except
19
+ - Fixes get_horizons_coord passing id_type
20
+ - Fixes a bug when no flare or AR data returned from HEK in the app
21
+ - Removes AIA fix_observer_location as it is no longer needed
22
+
1
23
  # v1.0.0 (19-Nov-2024)
2
24
 
3
25
  ## Features