firewxpy 1.2__tar.gz → 1.2.2__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 (33) hide show
  1. {firewxpy-1.2 → firewxpy-1.2.2}/PKG-INFO +1 -1
  2. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy.egg-info/PKG-INFO +1 -1
  3. {firewxpy-1.2 → firewxpy-1.2.2}/pyproject.toml +2 -2
  4. {firewxpy-1.2 → firewxpy-1.2.2}/setup.py +3 -3
  5. {firewxpy-1.2 → firewxpy-1.2.2}/LICENSE +0 -0
  6. {firewxpy-1.2 → firewxpy-1.2.2}/README.md +0 -0
  7. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/NWS_Alaska.py +0 -0
  8. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/NWS_CONUS.py +0 -0
  9. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/NWS_Hawaii.py +0 -0
  10. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/RTMA_Graphics_Alaska.py +0 -0
  11. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/RTMA_Graphics_CONUS.py +0 -0
  12. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/RTMA_Graphics_Hawaii.py +0 -0
  13. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/SPC_Outlook_Graphics.py +0 -0
  14. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/__init__.py +0 -0
  15. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/calc.py +0 -0
  16. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/colormaps.py +0 -0
  17. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/data_access.py +0 -0
  18. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/dims.py +0 -0
  19. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/geometry.py +0 -0
  20. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/observations.py +0 -0
  21. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/parsers.py +0 -0
  22. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/sawti.py +0 -0
  23. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/settings.py +0 -0
  24. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/solar_information.py +0 -0
  25. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/soundings.py +0 -0
  26. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/standard.py +0 -0
  27. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy/utilities.py +0 -0
  28. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy.egg-info/SOURCES.txt +0 -0
  29. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy.egg-info/dependency_links.txt +0 -0
  30. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy.egg-info/requires.txt +0 -0
  31. {firewxpy-1.2 → firewxpy-1.2.2}/firewxpy.egg-info/top_level.txt +0 -0
  32. {firewxpy-1.2 → firewxpy-1.2.2}/setup.cfg +0 -0
  33. {firewxpy-1.2 → firewxpy-1.2.2}/test/test.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: firewxpy
3
- Version: 1.2
3
+ Version: 1.2.2
4
4
  Summary: Weather Analysis and Forecasting For Fire Weather
5
5
  Author: Eric J Drewitz, USDA/USFS
6
6
  Keywords: meteorology,science,data-analysis,weather,forecasting
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: firewxpy
3
- Version: 1.2
3
+ Version: 1.2.2
4
4
  Summary: Weather Analysis and Forecasting For Fire Weather
5
5
  Author: Eric J Drewitz, USDA/USFS
6
6
  Keywords: meteorology,science,data-analysis,weather,forecasting
@@ -1,10 +1,10 @@
1
1
  [build-system]
2
- requires = ["setuptools>=68.0"]
2
+ requires = ["setuptools>=64"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "firewxpy"
7
- version = "1.2"
7
+ version = "1.2.2"
8
8
  authors = [
9
9
  { name="Eric J Drewitz, USDA/USFS"},
10
10
  ]
@@ -1,12 +1,12 @@
1
1
  import sys
2
2
  from setuptools import setup, find_packages
3
3
 
4
- if sys.version_info[0] < 3.10:
5
- print("ERROR: User is running a version of Python older than Python 3.10\nTo use FireWxPy, the user must be using Python 3.10 or newer.")
4
+ if sys.version_info[0] < 3:
5
+ print("ERROR: User is running a version of Python older than Python 3\nTo use FireWxPy, the user must be using Python 3 or newer.")
6
6
 
7
7
  setup(
8
8
  name = "firewxpy",
9
- version = "1.2",
9
+ version = "1.2.2",
10
10
  packages = find_packages(),
11
11
  install_requires=[
12
12
  "matplotlib>=3.7",
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