freva-client 2404.0.0__tar.gz → 2404.0.1__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 (21) hide show
  1. {freva_client-2404.0.0 → freva_client-2404.0.1}/PKG-INFO +2 -2
  2. {freva_client-2404.0.0 → freva_client-2404.0.1}/README.md +1 -1
  3. {freva_client-2404.0.0 → freva_client-2404.0.1}/src/freva_client/__init__.py +1 -1
  4. {freva_client-2404.0.0 → freva_client-2404.0.1}/MANIFEST.in +0 -0
  5. {freva_client-2404.0.0 → freva_client-2404.0.1}/assets/share/freva/freva.toml +0 -0
  6. {freva_client-2404.0.0 → freva_client-2404.0.1}/pyproject.toml +0 -0
  7. {freva_client-2404.0.0 → freva_client-2404.0.1}/src/freva_client/__main__.py +0 -0
  8. {freva_client-2404.0.0 → freva_client-2404.0.1}/src/freva_client/cli/__init__.py +0 -0
  9. {freva_client-2404.0.0 → freva_client-2404.0.1}/src/freva_client/cli/cli_app.py +0 -0
  10. {freva_client-2404.0.0 → freva_client-2404.0.1}/src/freva_client/cli/cli_utils.py +0 -0
  11. {freva_client-2404.0.0 → freva_client-2404.0.1}/src/freva_client/cli/databrowser_cli.py +0 -0
  12. {freva_client-2404.0.0 → freva_client-2404.0.1}/src/freva_client/py.typed +0 -0
  13. {freva_client-2404.0.0 → freva_client-2404.0.1}/src/freva_client/query.py +0 -0
  14. {freva_client-2404.0.0 → freva_client-2404.0.1}/src/freva_client/utils/__init__.py +0 -0
  15. {freva_client-2404.0.0 → freva_client-2404.0.1}/src/freva_client/utils/databrowser_utils.py +0 -0
  16. {freva_client-2404.0.0 → freva_client-2404.0.1}/src/freva_client/utils/logger.py +0 -0
  17. {freva_client-2404.0.0 → freva_client-2404.0.1}/src/tests/__init__.py +0 -0
  18. {freva_client-2404.0.0 → freva_client-2404.0.1}/src/tests/conftest.py +0 -0
  19. {freva_client-2404.0.0 → freva_client-2404.0.1}/src/tests/test_cli.py +0 -0
  20. {freva_client-2404.0.0 → freva_client-2404.0.1}/src/tests/test_databrowser.py +0 -0
  21. {freva_client-2404.0.0 → freva_client-2404.0.1}/src/tests/test_url.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: freva-client
3
- Version: 2404.0.0
3
+ Version: 2404.0.1
4
4
  Summary: Search for climate data based on key-value pairs
5
5
  Author-email: "DKRZ, Clint" <freva@dkrz.de>
6
6
  Requires-Python: >=3.8
@@ -31,7 +31,7 @@ Provides-Extra: dev
31
31
  # A REST API for the freva databrowser
32
32
 
33
33
  [![License](https://img.shields.io/badge/License-BSD-purple.svg)](LICENSE)
34
- [![Python](https://img.shields.io/badge/python-3.12-red.svg)](https://www.python.org/downloads/release/python-312/)
34
+ [![PyPI](https://img.shields.io/pypi/pyversions/freva-client.svg)](https://pypi.org/project/freva-client/)
35
35
  [![Docs](https://img.shields.io/badge/API-Doc-green.svg)](https://freva-clint.github.io/freva-nextgen)
36
36
  [![Tests](https://github.com/FREVA-CLINT/freva-nextgen/actions/workflows/ci_job.yml/badge.svg)](https://github.com/FREVA-CLINT/freva-nextgen/actions)
37
37
  [![Test-Coverage](https://codecov.io/github/FREVA-CLINT/freva-nextgen/branch/init/graph/badge.svg?token=dGhXxh7uP3)](https://codecov.io/github/FREVA-CLINT/freva-nextgen)
@@ -1,7 +1,7 @@
1
1
  # A REST API for the freva databrowser
2
2
 
3
3
  [![License](https://img.shields.io/badge/License-BSD-purple.svg)](LICENSE)
4
- [![Python](https://img.shields.io/badge/python-3.12-red.svg)](https://www.python.org/downloads/release/python-312/)
4
+ [![PyPI](https://img.shields.io/pypi/pyversions/freva-client.svg)](https://pypi.org/project/freva-client/)
5
5
  [![Docs](https://img.shields.io/badge/API-Doc-green.svg)](https://freva-clint.github.io/freva-nextgen)
6
6
  [![Tests](https://github.com/FREVA-CLINT/freva-nextgen/actions/workflows/ci_job.yml/badge.svg)](https://github.com/FREVA-CLINT/freva-nextgen/actions)
7
7
  [![Test-Coverage](https://codecov.io/github/FREVA-CLINT/freva-nextgen/branch/init/graph/badge.svg?token=dGhXxh7uP3)](https://codecov.io/github/FREVA-CLINT/freva-nextgen)
@@ -16,5 +16,5 @@ need to apply data analysis plugins, please visit the
16
16
 
17
17
  from .query import databrowser
18
18
 
19
- __version__ = "2404.0.0"
19
+ __version__ = "2404.0.1"
20
20
  __all__ = ["databrowser", "__version__"]