eodag 3.0.0b3__tar.gz → 3.1.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.
- {eodag-3.0.0b3 → eodag-3.1.0}/.github/workflows/deploy.yml +12 -16
- {eodag-3.0.0b3 → eodag-3.1.0}/.github/workflows/fetch.yml +16 -24
- eodag-3.1.0/.github/workflows/github-pages.yml +38 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/.github/workflows/test.yml +41 -90
- {eodag-3.0.0b3 → eodag-3.1.0}/.gitignore +1 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/BREAKING_CHANGES.rst +8 -8
- {eodag-3.0.0b3 → eodag-3.1.0}/CHANGES.rst +441 -152
- {eodag-3.0.0b3 → eodag-3.1.0}/CONTRIBUTING.rst +2 -2
- {eodag-3.0.0b3/eodag.egg-info → eodag-3.1.0}/PKG-INFO +21 -21
- {eodag-3.0.0b3 → eodag-3.1.0}/README.rst +4 -9
- {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/Chart.yaml +2 -2
- {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/deployment.yaml +1 -1
- {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/values.yaml +1 -1
- {eodag-3.0.0b3 → eodag-3.1.0}/docker/stac-server.dockerfile +2 -1
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/custom.css +19 -0
- eodag-3.1.0/docs/_static/eodag_overview.png +0 -0
- eodag-3.1.0/docs/_static/eodag_stac_client.png +0 -0
- eodag-3.1.0/docs/_static/eodag_stac_server.png +0 -0
- eodag-3.1.0/docs/_static/params_mapping_extra.csv +34 -0
- eodag-3.1.0/docs/_static/params_mapping_offline_infos.json +1 -0
- eodag-3.1.0/docs/_static/params_mapping_opensearch.csv +45 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/product_types_information.csv +280 -243
- eodag-3.1.0/docs/_static/stac_browser_example.png +0 -0
- eodag-3.1.0/docs/_static/stac_browser_example_600.png +0 -0
- eodag-3.1.0/docs/add_product_type.rst +105 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/add_provider.rst +48 -41
- eodag-3.1.0/docs/api_reference/assets.rst +32 -0
- eodag-3.1.0/docs/api_reference/eoproduct.rst +56 -0
- eodag-3.1.0/docs/api_reference/exceptions.rst +13 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/api_reference/index.rst +1 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/api_reference/types.rst +3 -0
- eodag-3.1.0/docs/api_reference/utils.rst +48 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/api_user_guide.rst +6 -5
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/cli_user_guide.rst +2 -2
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/conf.py +57 -7
- eodag-3.1.0/docs/drivers.rst +46 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/getting_started_guide/configure.rst +2 -1
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/getting_started_guide/index.rst +1 -1
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/getting_started_guide/install.rst +10 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/getting_started_guide/product_storage_status.rst +1 -1
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/getting_started_guide/product_types.rst +1 -1
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/getting_started_guide/providers.rst +21 -22
- eodag-3.1.0/docs/getting_started_guide/register.rst +273 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/index.rst +27 -15
- eodag-3.1.0/docs/notebooks/api_user_guide/1_overview.ipynb +32785 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/api_user_guide/2_providers_products_available.ipynb +182 -52
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/api_user_guide/3_configuration.ipynb +17 -16
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/api_user_guide/4_search.ipynb +3613 -600
- eodag-3.1.0/docs/notebooks/api_user_guide/5_queryables.ipynb +1683 -0
- eodag-3.0.0b3/docs/notebooks/api_user_guide/5_serialize_deserialize.ipynb → eodag-3.1.0/docs/notebooks/api_user_guide/6_serialize_deserialize.ipynb +6 -6
- eodag-3.0.0b3/docs/notebooks/api_user_guide/7_download.ipynb → eodag-3.1.0/docs/notebooks/api_user_guide/8_download.ipynb +1 -1
- eodag-3.1.0/docs/notebooks/api_user_guide/9_post_process.ipynb +2725 -0
- eodag-3.1.0/docs/notebooks/api_user_guide/data/crunch_search_results.geojson +1 -0
- eodag-3.1.0/docs/notebooks/api_user_guide/data/download_search_results.geojson +1 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/intro_notebooks.ipynb +15 -7
- eodag-3.1.0/docs/notebooks/tutos/tuto_cds.ipynb +1824 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/tuto_cop_dem.ipynb +21 -21
- eodag-3.1.0/docs/notebooks/tutos/tuto_ecmwf.ipynb +1243 -0
- eodag-3.1.0/docs/notebooks/tutos/tuto_meteoblue.ipynb +1265 -0
- eodag-3.1.0/docs/notebooks/tutos/tuto_search_location_tile.ipynb +886 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/tuto_stac_client.ipynb +21 -25
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/tuto_wekeo.ipynb +24 -171
- eodag-3.1.0/docs/params_mapping.rst +78 -0
- eodag-3.1.0/docs/plugins.rst +269 -0
- eodag-3.1.0/docs/plugins_reference/auth.rst +35 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/plugins_reference/search.rst +6 -2
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/stac.rst +3 -3
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/stac_rest.rst +20 -25
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/tutos.rst +1 -1
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/api/core.py +347 -247
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/api/product/_assets.py +44 -15
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/api/product/_product.py +58 -47
- eodag-3.1.0/eodag/api/product/drivers/__init__.py +106 -0
- eodag-3.1.0/eodag/api/product/drivers/base.py +106 -0
- eodag-3.1.0/eodag/api/product/drivers/generic.py +65 -0
- eodag-3.1.0/eodag/api/product/drivers/sentinel1.py +97 -0
- eodag-3.1.0/eodag/api/product/drivers/sentinel2.py +95 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/api/product/metadata_mapping.py +129 -93
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/api/search_result.py +28 -12
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/cli.py +61 -24
- eodag-3.1.0/eodag/config.py +1047 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/apis/base.py +10 -4
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/apis/ecmwf.py +53 -23
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/apis/usgs.py +41 -17
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/aws_auth.py +30 -18
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/base.py +14 -3
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/generic.py +14 -3
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/header.py +14 -6
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/keycloak.py +44 -25
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/oauth.py +18 -4
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/openid_connect.py +192 -171
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/qsauth.py +12 -4
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/sas_auth.py +22 -5
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/token.py +95 -17
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/token_exchange.py +19 -19
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/base.py +4 -4
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/crunch/base.py +8 -5
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/crunch/filter_date.py +9 -6
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/crunch/filter_latest_intersect.py +9 -8
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/crunch/filter_latest_tpl_name.py +8 -8
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/crunch/filter_overlap.py +9 -11
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/crunch/filter_property.py +10 -10
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/download/aws.py +181 -105
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/download/base.py +49 -67
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/download/creodias_s3.py +40 -2
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/download/http.py +247 -223
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/download/s3rest.py +29 -28
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/manager.py +176 -41
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/search/__init__.py +6 -5
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/search/base.py +123 -60
- eodag-3.1.0/eodag/plugins/search/build_search_result.py +1229 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/search/cop_marine.py +132 -39
- eodag-3.1.0/eodag/plugins/search/creodias_s3.py +85 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/search/csw.py +48 -8
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/search/data_request_search.py +124 -23
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/search/qssearch.py +531 -310
- eodag-3.1.0/eodag/plugins/search/stac_list_assets.py +85 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/search/static_stac_search.py +23 -24
- eodag-3.1.0/eodag/resources/ext_product_types.json +1 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/product_types.yml +1295 -355
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/providers.yml +1819 -3010
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/stac.yml +3 -163
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/stac_api.yml +2 -2
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/user_conf_template.yml +115 -99
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/cache.py +2 -2
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/config.py +3 -4
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/constants.py +0 -1
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/core.py +157 -117
- eodag-3.1.0/eodag/rest/errors.py +181 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/server.py +57 -339
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/stac.py +133 -581
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/types/collections_search.py +3 -3
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/types/eodag_search.py +41 -30
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/types/queryables.py +42 -32
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/types/stac_search.py +15 -16
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/utils/__init__.py +14 -21
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/utils/cql_evaluate.py +6 -6
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/utils/rfc3339.py +2 -2
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/types/__init__.py +153 -32
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/types/bbox.py +2 -2
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/types/download_args.py +4 -4
- eodag-3.1.0/eodag/types/queryables.py +234 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/types/search_args.py +6 -6
- eodag-3.1.0/eodag/types/whoosh.py +203 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/utils/__init__.py +228 -106
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/utils/exceptions.py +47 -26
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/utils/import_system.py +2 -2
- eodag-3.1.0/eodag/utils/logging.py +120 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/utils/repr.py +65 -6
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/utils/requests.py +13 -15
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/utils/rest.py +2 -2
- eodag-3.1.0/eodag/utils/s3.py +231 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/utils/stac_reader.py +11 -11
- {eodag-3.0.0b3 → eodag-3.1.0/eodag.egg-info}/PKG-INFO +21 -21
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag.egg-info/SOURCES.txt +16 -7
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag.egg-info/entry_points.txt +5 -2
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag.egg-info/requires.txt +14 -13
- eodag-3.1.0/get_pypi_latest_version.sh +3 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/pyproject.toml +4 -1
- {eodag-3.0.0b3 → eodag-3.1.0}/pytest.ini +1 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/setup.cfg +20 -12
- {eodag-3.0.0b3 → eodag-3.1.0}/tox.ini +6 -4
- {eodag-3.0.0b3 → eodag-3.1.0}/utils/params_mapping_to_csv.py +2 -3
- {eodag-3.0.0b3 → eodag-3.1.0}/utils/product_types_information_to_csv.py +3 -3
- eodag-3.0.0b3/docs/_static/eodag_overview.png +0 -0
- eodag-3.0.0b3/docs/_static/eodag_stac_client.png +0 -0
- eodag-3.0.0b3/docs/_static/eodag_stac_server.png +0 -0
- eodag-3.0.0b3/docs/_static/params_mapping_extra.csv +0 -142
- eodag-3.0.0b3/docs/_static/params_mapping_offline_infos.json +0 -1
- eodag-3.0.0b3/docs/_static/params_mapping_opensearch.csv +0 -47
- eodag-3.0.0b3/docs/_static/stac_browser_example.png +0 -0
- eodag-3.0.0b3/docs/_static/stac_browser_example_600.png +0 -0
- eodag-3.0.0b3/docs/api_reference/eoproduct.rst +0 -39
- eodag-3.0.0b3/docs/api_reference/exceptions.rst +0 -6
- eodag-3.0.0b3/docs/api_reference/utils.rst +0 -23
- eodag-3.0.0b3/docs/getting_started_guide/register.rst +0 -162
- eodag-3.0.0b3/docs/notebooks/api_user_guide/1_overview.ipynb +0 -923
- eodag-3.0.0b3/docs/notebooks/api_user_guide/8_post_process.ipynb +0 -986
- eodag-3.0.0b3/docs/notebooks/api_user_guide/data/crunch_search_results.geojson +0 -1
- eodag-3.0.0b3/docs/notebooks/api_user_guide/data/download_search_results.geojson +0 -1
- eodag-3.0.0b3/docs/notebooks/tutos/tuto_cds.ipynb +0 -870
- eodag-3.0.0b3/docs/notebooks/tutos/tuto_ecmwf.ipynb +0 -782
- eodag-3.0.0b3/docs/notebooks/tutos/tuto_meteoblue.ipynb +0 -1079
- eodag-3.0.0b3/docs/notebooks/tutos/tuto_search_location_tile.ipynb +0 -886
- eodag-3.0.0b3/docs/plugins.rst +0 -284
- eodag-3.0.0b3/docs/plugins_reference/auth.rst +0 -25
- eodag-3.0.0b3/eodag/api/product/drivers/__init__.py +0 -29
- eodag-3.0.0b3/eodag/api/product/drivers/base.py +0 -45
- eodag-3.0.0b3/eodag/config.py +0 -757
- eodag-3.0.0b3/eodag/plugins/search/build_search_result.py +0 -538
- eodag-3.0.0b3/eodag/plugins/search/creodias_s3.py +0 -134
- eodag-3.0.0b3/eodag/resources/constraints/climate-dt.json +0 -13
- eodag-3.0.0b3/eodag/resources/constraints/extremes-dt.json +0 -8
- eodag-3.0.0b3/eodag/resources/ext_product_types.json +0 -1
- eodag-3.0.0b3/eodag/types/queryables.py +0 -124
- eodag-3.0.0b3/eodag/types/whoosh.py +0 -79
- eodag-3.0.0b3/eodag/utils/constraints.py +0 -244
- eodag-3.0.0b3/eodag/utils/logging.py +0 -160
- eodag-3.0.0b3/get_pypi_latest_version.sh +0 -4
- {eodag-3.0.0b3 → eodag-3.1.0}/.dockerignore +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/.editorconfig +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/.gitattributes +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/.github/pull_request_template.md +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/.pre-commit-config.yaml +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/CODE_OF_CONDUCT.md +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/LICENSE +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/MANIFEST.in +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/NOTICE +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/Chart.lock +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/README.md +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/NOTES.txt +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/_helpers.tpl +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/configmap.yaml +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/extra-list.yaml +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/hpa.yaml +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/ingress.yaml +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/pv.yaml +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/pvc.yaml +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/secret.yaml +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/service.yaml +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/charts/eodag-server/templates/serviceaccount.yaml +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docker/run-stac-server.sh +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docker/stac-browser.dockerfile +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docker-compose.yml +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/Makefile +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/download_methods.png +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/eodag_advanced_calls_graph.svg +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/eodag_bycs.png +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/eodag_fetch_product_types.png +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/eodag_logo_160.png +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/eodag_logo_160r.png +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/eodag_main_calls_graph.svg +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/favicon-32x32.png +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/progress_1.png +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/progress_1_none.png +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/progress_2.png +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/_static/progress_2_none.png +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/api_reference/call_graphs.rst +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/api_reference/core.rst +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/api_reference/searchresult.rst +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/breaking_changes.rst +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/changelog.rst +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/contribute.rst +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/getting_started_guide/overview.rst +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/getting_started_guide/side_projects.rst +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/make.bat +0 -0
- /eodag-3.0.0b3/docs/notebooks/api_user_guide/6_crunch.ipynb → /eodag-3.1.0/docs/notebooks/api_user_guide/7_crunch.ipynb +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.cpg +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.dbf +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.prj +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qix +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.qpj +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shp +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/Gulf_of_Trieste_seamask_UTM33.shx +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/auxdata/sentinel2_tiling_grid_centroids.zip +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/tuto_burnt_areas_snappy.ipynb +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/notebooks/tutos/tuto_ship_detection.ipynb +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/plugins_reference/api.rst +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/plugins_reference/crunch.rst +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/docs/plugins_reference/download.rst +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/__init__.py +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/api/__init__.py +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/api/product/__init__.py +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/crunch.py +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/__init__.py +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/apis/__init__.py +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/authentication/__init__.py +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/crunch/__init__.py +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/plugins/download/__init__.py +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/py.typed +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/locations_conf_template.yml +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.VERSION.txt +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.cpg +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.dbf +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.prj +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.shp +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/shp/ne_110m_admin_0_map_units.shx +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/resources/stac_provider.yml +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/__init__.py +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/server.wsgi +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/templates/README +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/rest/types/__init__.py +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag/utils/notebook.py +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag.egg-info/dependency_links.txt +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/eodag.egg-info/top_level.txt +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/readthedocs.yml +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/requirements-dev.txt +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/requirements-docs.txt +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/requirements-tutorials.txt +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/requirements.txt +0 -0
- {eodag-3.0.0b3 → eodag-3.1.0}/setup.py +0 -0
|
@@ -14,18 +14,18 @@ jobs:
|
|
|
14
14
|
steps:
|
|
15
15
|
- name: Checkout source
|
|
16
16
|
uses: actions/checkout@v4
|
|
17
|
-
- name: Get history and tags for SCM versioning to work
|
|
18
|
-
run: |
|
|
19
|
-
git fetch --prune --unshallow
|
|
20
|
-
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
21
|
-
- name: Set up Python 3.8
|
|
22
|
-
uses: actions/setup-python@v5
|
|
23
17
|
with:
|
|
24
|
-
|
|
25
|
-
|
|
18
|
+
# Get history and tags for SCM versioning to work
|
|
19
|
+
fetch-depth: 0
|
|
20
|
+
- name: Install the latest version of uv with cache enabled
|
|
21
|
+
uses: astral-sh/setup-uv@v3
|
|
22
|
+
with:
|
|
23
|
+
version: "latest"
|
|
24
|
+
enable-cache: true
|
|
25
|
+
cache-dependency-glob: ""
|
|
26
26
|
- name: Check that the current version isn't already on PyPi
|
|
27
27
|
run: |
|
|
28
|
-
if [ "$(./get_pypi_latest_version.sh)" != "$(
|
|
28
|
+
if [ "$(./get_pypi_latest_version.sh)" != "$(git describe --tags)" ]
|
|
29
29
|
then
|
|
30
30
|
echo "Current version is not on PyPI, proceed with bulding"
|
|
31
31
|
else
|
|
@@ -34,15 +34,11 @@ jobs:
|
|
|
34
34
|
fi
|
|
35
35
|
|
|
36
36
|
- name: Check long description is OK for PyPI with tox
|
|
37
|
-
run:
|
|
38
|
-
python -m pip install --upgrade pip
|
|
39
|
-
python -m pip install tox sphinx
|
|
40
|
-
tox -e pypi
|
|
37
|
+
run: uvx --with tox-uv --with sphinx tox -e pypi
|
|
41
38
|
|
|
42
39
|
- name: Build a binary wheel and a source tarball
|
|
43
|
-
run:
|
|
44
|
-
|
|
45
|
-
python -m build --sdist --wheel
|
|
40
|
+
run: uvx --from build pyproject-build --sdist --wheel
|
|
41
|
+
|
|
46
42
|
- name: Publish distribution to PyPI
|
|
47
43
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
48
44
|
with:
|
|
@@ -14,34 +14,26 @@ jobs:
|
|
|
14
14
|
steps:
|
|
15
15
|
- name: Checkout the repo
|
|
16
16
|
uses: actions/checkout@v4
|
|
17
|
-
- name: Get history and tags for SCM versioning to work
|
|
18
|
-
run: |
|
|
19
|
-
git fetch --prune --unshallow
|
|
20
|
-
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
21
|
-
- name: Set up Python 3.8
|
|
22
|
-
uses: actions/setup-python@v5
|
|
23
17
|
with:
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
id: pip-cache
|
|
29
|
-
shell: bash
|
|
30
|
-
run: echo "DIR=$(pip cache dir)" >> $GITHUB_OUTPUT
|
|
31
|
-
- name: Get current week number
|
|
32
|
-
id: get-week
|
|
33
|
-
shell: bash
|
|
34
|
-
run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
|
|
35
|
-
- name: Pip cache
|
|
36
|
-
uses: actions/cache@v4
|
|
18
|
+
# Get history and tags for SCM versioning to work
|
|
19
|
+
fetch-depth: 0
|
|
20
|
+
- name: Install the latest version of uv with cache enabled
|
|
21
|
+
uses: astral-sh/setup-uv@v3
|
|
37
22
|
with:
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
23
|
+
version: "latest"
|
|
24
|
+
enable-cache: true
|
|
25
|
+
cache-dependency-glob: ""
|
|
26
|
+
- name: Install eodag in venv
|
|
41
27
|
run: |
|
|
42
|
-
|
|
28
|
+
uv venv
|
|
29
|
+
source .venv/bin/activate
|
|
30
|
+
uv pip install ".[all-providers]"
|
|
43
31
|
- name: Fetch and update external product types reference
|
|
32
|
+
env:
|
|
33
|
+
EODAG__WEKEO_MAIN__AUTH__CREDENTIALS__USERNAME: ${{ secrets.EODAG__WEKEO_MAIN__AUTH__CREDENTIALS__USERNAME }}
|
|
34
|
+
EODAG__WEKEO_MAIN__AUTH__CREDENTIALS__PASSWORD: ${{ secrets.EODAG__WEKEO_MAIN__AUTH__CREDENTIALS__PASSWORD }}
|
|
44
35
|
run: |
|
|
36
|
+
source .venv/bin/activate
|
|
45
37
|
export JSON_OUTPUT_FILE="eodag/resources/ext_product_types.json"
|
|
46
38
|
export JSON_REF_FILE=$(python -c "import eodag; print(eodag.config.EXT_PRODUCT_TYPES_CONF_URI)")
|
|
47
39
|
eodag -vvv discover --storage ${JSON_OUTPUT_FILE}
|
|
@@ -59,7 +51,7 @@ jobs:
|
|
|
59
51
|
echo "commit [${COMMIT_SHA}](${COMMIT_URL})" >> $GITHUB_STEP_SUMMARY
|
|
60
52
|
echo '```diff' >> $GITHUB_STEP_SUMMARY
|
|
61
53
|
git show --name-only --format=tformat: >> $GITHUB_STEP_SUMMARY
|
|
62
|
-
(diff <(curl ${JSON_REF_FILE}) <(cat ${JSON_OUTPUT_FILE}) || true) >> $GITHUB_STEP_SUMMARY
|
|
54
|
+
(diff <(curl ${JSON_REF_FILE} | jq) <(cat ${JSON_OUTPUT_FILE} | jq) || true) >> $GITHUB_STEP_SUMMARY
|
|
63
55
|
echo '```' >> $GITHUB_STEP_SUMMARY
|
|
64
56
|
# truncated PR body (too long causes error)
|
|
65
57
|
full_update_summary=$(cat $GITHUB_STEP_SUMMARY)
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
name: Deploy static content to GitHub Pages
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
push:
|
|
6
|
+
branches: [develop]
|
|
7
|
+
|
|
8
|
+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
9
|
+
permissions:
|
|
10
|
+
contents: read
|
|
11
|
+
pages: write
|
|
12
|
+
id-token: write
|
|
13
|
+
|
|
14
|
+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
|
15
|
+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
|
16
|
+
concurrency:
|
|
17
|
+
group: "pages"
|
|
18
|
+
cancel-in-progress: false
|
|
19
|
+
|
|
20
|
+
jobs:
|
|
21
|
+
deploy:
|
|
22
|
+
environment:
|
|
23
|
+
name: github-pages
|
|
24
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
25
|
+
runs-on: ubuntu-latest
|
|
26
|
+
steps:
|
|
27
|
+
- name: Checkout
|
|
28
|
+
uses: actions/checkout@v4
|
|
29
|
+
- name: Setup Pages
|
|
30
|
+
uses: actions/configure-pages@v5
|
|
31
|
+
- name: Upload artifact
|
|
32
|
+
uses: actions/upload-pages-artifact@v3
|
|
33
|
+
with:
|
|
34
|
+
# Upload entire repository
|
|
35
|
+
path: '.'
|
|
36
|
+
- name: Deploy to GitHub Pages
|
|
37
|
+
id: deployment
|
|
38
|
+
uses: actions/deploy-pages@v4
|
|
@@ -11,62 +11,47 @@ on:
|
|
|
11
11
|
|
|
12
12
|
jobs:
|
|
13
13
|
lint:
|
|
14
|
-
name: Linting (pre-commit)
|
|
14
|
+
name: Linting (pre-commit and mypy)
|
|
15
15
|
runs-on: ubuntu-latest
|
|
16
16
|
steps:
|
|
17
17
|
- name: Checkout the repo
|
|
18
18
|
uses: actions/checkout@v4
|
|
19
|
-
- name: Get history and tags for SCM versioning to work
|
|
20
|
-
run: |
|
|
21
|
-
git fetch --prune --unshallow
|
|
22
|
-
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
23
|
-
- name: Set up Python 3.8
|
|
24
|
-
uses: actions/setup-python@v5
|
|
25
19
|
with:
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
20
|
+
# Get history and tags for SCM versioning to work
|
|
21
|
+
fetch-depth: 0
|
|
22
|
+
- name: Install the latest version of uv with cache enabled
|
|
23
|
+
uses: astral-sh/setup-uv@v3
|
|
24
|
+
with:
|
|
25
|
+
version: "latest"
|
|
26
|
+
enable-cache: true
|
|
27
|
+
cache-dependency-glob: ""
|
|
28
|
+
- name: Run linters with tox
|
|
29
|
+
run: uvx --python 3.9 --with tox-uv tox -e linters
|
|
29
30
|
|
|
30
31
|
tests:
|
|
31
32
|
name: Test it!
|
|
32
33
|
runs-on: ${{ matrix.os }}
|
|
33
34
|
strategy:
|
|
34
35
|
matrix:
|
|
35
|
-
python-version: [3.
|
|
36
|
+
python-version: [3.9, "3.13"]
|
|
36
37
|
os: [ubuntu-latest, windows-latest]
|
|
37
38
|
steps:
|
|
38
39
|
- name: Checkout the repo
|
|
39
40
|
uses: actions/checkout@v4
|
|
40
|
-
- name: Get history and tags for SCM versioning to work
|
|
41
|
-
run: |
|
|
42
|
-
git fetch --prune --unshallow
|
|
43
|
-
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
44
|
-
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
|
|
45
|
-
uses: actions/setup-python@v5
|
|
46
41
|
with:
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
id: pip-cache
|
|
52
|
-
shell: bash
|
|
53
|
-
run: echo "DIR=$(pip cache dir)" >> $GITHUB_OUTPUT
|
|
54
|
-
- name: Get current week number
|
|
55
|
-
id: get-week
|
|
56
|
-
shell: bash
|
|
57
|
-
run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
|
|
58
|
-
- name: Pip cache
|
|
59
|
-
uses: actions/cache@v4
|
|
42
|
+
# Get history and tags for SCM versioning to work
|
|
43
|
+
fetch-depth: 0
|
|
44
|
+
- name: Install the latest version of uv with cache enabled
|
|
45
|
+
uses: astral-sh/setup-uv@v3
|
|
60
46
|
with:
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
run: python -m pip install tox tox-gh-actions
|
|
47
|
+
version: "latest"
|
|
48
|
+
enable-cache: true
|
|
49
|
+
cache-dependency-glob: ""
|
|
65
50
|
- name: Test with tox
|
|
66
|
-
run: tox
|
|
51
|
+
run: uvx --python ${{ matrix.python-version }} --with tox-uv --with tox-gh-actions tox
|
|
67
52
|
- name: Upload Unit Test Results
|
|
68
53
|
if: always()
|
|
69
|
-
uses: actions/upload-artifact@
|
|
54
|
+
uses: actions/upload-artifact@v4
|
|
70
55
|
with:
|
|
71
56
|
name: unit-test-results-python${{ matrix.python-version }}-${{ matrix.os }}
|
|
72
57
|
path: |
|
|
@@ -81,7 +66,7 @@ jobs:
|
|
|
81
66
|
|
|
82
67
|
steps:
|
|
83
68
|
- name: Download Artifacts
|
|
84
|
-
uses: actions/download-artifact@
|
|
69
|
+
uses: actions/download-artifact@v4
|
|
85
70
|
with:
|
|
86
71
|
path: artifacts
|
|
87
72
|
|
|
@@ -95,7 +80,7 @@ jobs:
|
|
|
95
80
|
uses: insightsengineering/coverage-action@v2
|
|
96
81
|
with:
|
|
97
82
|
# Path to the Cobertura XML report.
|
|
98
|
-
path: artifacts/unit-test-results-python3.
|
|
83
|
+
path: artifacts/unit-test-results-python3.13-ubuntu-latest/coverage.xml
|
|
99
84
|
# Minimum total coverage, if you want to the
|
|
100
85
|
# workflow to enforce it as a standard.
|
|
101
86
|
# This has no effect if the `fail` arg is set to `false`.
|
|
@@ -125,7 +110,7 @@ jobs:
|
|
|
125
110
|
uses: insightsengineering/coverage-action@v2
|
|
126
111
|
with:
|
|
127
112
|
# Path to the Cobertura XML report.
|
|
128
|
-
path: artifacts/unit-test-results-python3.
|
|
113
|
+
path: artifacts/unit-test-results-python3.13-windows-latest/coverage.xml
|
|
129
114
|
# Minimum total coverage, if you want to the
|
|
130
115
|
# workflow to enforce it as a standard.
|
|
131
116
|
# This has no effect if the `fail` arg is set to `false`.
|
|
@@ -157,38 +142,21 @@ jobs:
|
|
|
157
142
|
steps:
|
|
158
143
|
- name: Checkout the repo
|
|
159
144
|
uses: actions/checkout@v4
|
|
160
|
-
- name: Get history and tags for SCM versioning to work
|
|
161
|
-
run: |
|
|
162
|
-
git fetch --prune --unshallow
|
|
163
|
-
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
164
|
-
- name: Set up Python 3.8
|
|
165
|
-
uses: actions/setup-python@v5
|
|
166
145
|
with:
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
id: pip-cache
|
|
172
|
-
shell: bash
|
|
173
|
-
run: echo "DIR=$(pip cache dir)" >> $GITHUB_OUTPUT
|
|
174
|
-
- name: Get current week number
|
|
175
|
-
id: get-week
|
|
176
|
-
shell: bash
|
|
177
|
-
run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
|
|
178
|
-
- name: Pip cache
|
|
179
|
-
uses: actions/cache@v4
|
|
146
|
+
# Get history and tags for SCM versioning to work
|
|
147
|
+
fetch-depth: 0
|
|
148
|
+
- name: Install the latest version of uv with cache enabled
|
|
149
|
+
uses: astral-sh/setup-uv@v3
|
|
180
150
|
with:
|
|
181
|
-
|
|
182
|
-
|
|
151
|
+
version: "latest"
|
|
152
|
+
enable-cache: true
|
|
153
|
+
cache-dependency-glob: ""
|
|
183
154
|
- name: Install pandoc
|
|
184
155
|
run: |
|
|
185
156
|
curl -s https://api.github.com/repos/jgm/pandoc/releases/latest | grep -o "https.*amd64.deb" | wget -O pandoc.deb -qi -
|
|
186
157
|
sudo dpkg -i pandoc.deb && rm pandoc.deb
|
|
187
|
-
- name: Install tox
|
|
188
|
-
run: |
|
|
189
|
-
python -m pip install tox
|
|
190
158
|
- name: Testing with tox
|
|
191
|
-
run:
|
|
159
|
+
run: uvx --with tox-uv tox -e docs
|
|
192
160
|
|
|
193
161
|
check-pypi:
|
|
194
162
|
name: Long description check for PyPI
|
|
@@ -196,31 +164,14 @@ jobs:
|
|
|
196
164
|
steps:
|
|
197
165
|
- name: Checkout the repo
|
|
198
166
|
uses: actions/checkout@v4
|
|
199
|
-
- name: Get history and tags for SCM versioning to work
|
|
200
|
-
run: |
|
|
201
|
-
git fetch --prune --unshallow
|
|
202
|
-
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
203
|
-
- name: Set up Python 3.8
|
|
204
|
-
uses: actions/setup-python@v5
|
|
205
167
|
with:
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
id: pip-cache
|
|
211
|
-
shell: bash
|
|
212
|
-
run: echo "DIR=$(pip cache dir)" >> $GITHUB_OUTPUT
|
|
213
|
-
- name: Get current week number
|
|
214
|
-
id: get-week
|
|
215
|
-
shell: bash
|
|
216
|
-
run: echo "WEEK=$(date +'%V')" >> $GITHUB_OUTPUT
|
|
217
|
-
- name: Pip cache
|
|
218
|
-
uses: actions/cache@v4
|
|
168
|
+
# Get history and tags for SCM versioning to work
|
|
169
|
+
fetch-depth: 0
|
|
170
|
+
- name: Install the latest version of uv with cache enabled
|
|
171
|
+
uses: astral-sh/setup-uv@v3
|
|
219
172
|
with:
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
- name: Testing with tox
|
|
226
|
-
run: python -m tox -e pypi
|
|
173
|
+
version: "latest"
|
|
174
|
+
enable-cache: true
|
|
175
|
+
cache-dependency-glob: ""
|
|
176
|
+
- name: Testing with tox and sphinx (to have rst2html.py utility available)
|
|
177
|
+
run: uvx --with tox-uv --with sphinx tox -e pypi
|
|
@@ -3,14 +3,14 @@ Breaking changes
|
|
|
3
3
|
|
|
4
4
|
Full changelog available in `Release history <changelog.html>`_.
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
v3.0.0b3
|
|
7
|
+
++++++++
|
|
8
8
|
|
|
9
9
|
* :meth:`~eodag.api.core.EODataAccessGateway.download` / :class:`~eodag.types.download_args.DownloadConf` parameters
|
|
10
10
|
``outputs_prefix`` and ``outputs_extension`` renamed to ``output_dir`` and ``output_extension``.
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
v3.0.0b1
|
|
13
|
+
++++++++
|
|
14
14
|
|
|
15
15
|
* :meth:`~eodag.api.core.EODataAccessGateway.search` method now returns only a
|
|
16
16
|
:class:`~eodag.api.search_result.SearchResult` instead of a 2 values tuple. It can optionally store the estimated
|
|
@@ -45,14 +45,14 @@ Full changelog available in `Release history <changelog.html>`_.
|
|
|
45
45
|
# install eodag with all available providers supported
|
|
46
46
|
pip install "eodag[all-providers]"
|
|
47
47
|
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
v2.0b1
|
|
49
|
+
++++++
|
|
50
50
|
|
|
51
51
|
- STAC API compliant REST server
|
|
52
52
|
- Common configuration for STAC providers
|
|
53
53
|
|
|
54
|
-
|
|
55
|
-
|
|
54
|
+
v1.0
|
|
55
|
+
++++
|
|
56
56
|
|
|
57
57
|
- Adds product type search functionality
|
|
58
58
|
- The cli arguments are now fully compliant with opensearch geo(bbox)/time extensions
|