From 5fe004b80fb3dc423de90ddcfc23f874127c1429 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Thu, 11 Apr 2024 06:08:49 +0200 Subject: [PATCH] chore(deps): update dependency earthengine-api to v0.1.395 (#11347) * chore(deps): update dependency earthengine-api to v0.1.395 * skip python 3.12 since apache beam doesn't support it --------- Co-authored-by: David Cavazos --- .../geospatial-classification/noxfile_config.py | 2 +- people-and-planet-ai/geospatial-classification/requirements.txt | 2 +- .../land-cover-classification/noxfile_config.py | 2 +- people-and-planet-ai/land-cover-classification/requirements.txt | 2 +- .../land-cover-classification/serving/requirements.txt | 2 +- people-and-planet-ai/land-cover-classification/setup.py | 2 +- .../weather-forecasting/serving/weather-data/pyproject.toml | 2 +- .../weather-forecasting/tests/dataset_tests/noxfile_config.py | 2 +- .../weather-forecasting/tests/overview_tests/noxfile_config.py | 2 +- .../tests/predictions_tests/noxfile_config.py | 2 +- .../weather-forecasting/tests/training_tests/noxfile_config.py | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/people-and-planet-ai/geospatial-classification/noxfile_config.py b/people-and-planet-ai/geospatial-classification/noxfile_config.py index 9023a815962e..5bc74bde9dca 100644 --- a/people-and-planet-ai/geospatial-classification/noxfile_config.py +++ b/people-and-planet-ai/geospatial-classification/noxfile_config.py @@ -23,7 +23,7 @@ TEST_CONFIG_OVERRIDE = { # You can opt out from the test for specific Python versions. # > ℹ️ Test only on Python 3.10. - "ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.11"], + "ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.11", "3.12"], # Old samples are opted out of enforcing Python type hints # All new samples should feature them "enforce_type_hints": True, diff --git a/people-and-planet-ai/geospatial-classification/requirements.txt b/people-and-planet-ai/geospatial-classification/requirements.txt index bbafa137de83..6c33548640c4 100644 --- a/people-and-planet-ai/geospatial-classification/requirements.txt +++ b/people-and-planet-ai/geospatial-classification/requirements.txt @@ -1,4 +1,4 @@ -earthengine-api==0.1.358 +earthengine-api==0.1.395 folium==0.14.0 google-cloud-aiplatform==1.25.0 pandas==2.0.1 diff --git a/people-and-planet-ai/land-cover-classification/noxfile_config.py b/people-and-planet-ai/land-cover-classification/noxfile_config.py index d84ec0426a7a..2a0458698b45 100644 --- a/people-and-planet-ai/land-cover-classification/noxfile_config.py +++ b/people-and-planet-ai/land-cover-classification/noxfile_config.py @@ -26,7 +26,7 @@ # https://cloud.google.com/dataflow/docs/support/beam-runtime-support # "ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.10", "3.11"], # Temp disable until team has time for refactoring tests - "ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"], + "ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"], # Old samples are opted out of enforcing Python type hints # All new samples should feature them "enforce_type_hints": True, diff --git a/people-and-planet-ai/land-cover-classification/requirements.txt b/people-and-planet-ai/land-cover-classification/requirements.txt index 01fa75255ca1..22769a231319 100644 --- a/people-and-planet-ai/land-cover-classification/requirements.txt +++ b/people-and-planet-ai/land-cover-classification/requirements.txt @@ -1,6 +1,6 @@ # Requirements to run the notebooks. apache-beam[gcp]==2.46.0 -earthengine-api==0.1.358 +earthengine-api==0.1.395 folium==0.14.0 google-cloud-aiplatform==1.25.0 imageio==2.29.0 diff --git a/people-and-planet-ai/land-cover-classification/serving/requirements.txt b/people-and-planet-ai/land-cover-classification/serving/requirements.txt index 06faffcc8d84..a207cbc5a3a4 100644 --- a/people-and-planet-ai/land-cover-classification/serving/requirements.txt +++ b/people-and-planet-ai/land-cover-classification/serving/requirements.txt @@ -1,6 +1,6 @@ # Requirements for the prediction web service. Flask==3.0.0 -earthengine-api==0.1.358 +earthengine-api==0.1.395 gunicorn==20.1.0 tensorflow==2.12.0 Werkzeug==3.0.1 diff --git a/people-and-planet-ai/land-cover-classification/setup.py b/people-and-planet-ai/land-cover-classification/setup.py index 590e8bc2f13c..332fbc8be010 100644 --- a/people-and-planet-ai/land-cover-classification/setup.py +++ b/people-and-planet-ai/land-cover-classification/setup.py @@ -21,7 +21,7 @@ packages=["serving"], install_requires=[ "apache-beam[gcp]==2.46.0", - "earthengine-api==0.1.358", + "earthengine-api==0.1.395", "tensorflow==2.12.0", ], ) diff --git a/people-and-planet-ai/weather-forecasting/serving/weather-data/pyproject.toml b/people-and-planet-ai/weather-forecasting/serving/weather-data/pyproject.toml index 24efd3ddb479..7aa055bbc6e2 100644 --- a/people-and-planet-ai/weather-forecasting/serving/weather-data/pyproject.toml +++ b/people-and-planet-ai/weather-forecasting/serving/weather-data/pyproject.toml @@ -17,5 +17,5 @@ name = "weather-data" version = "1.0.0" dependencies = [ - "earthengine-api==0.1.358", + "earthengine-api==0.1.395", ] diff --git a/people-and-planet-ai/weather-forecasting/tests/dataset_tests/noxfile_config.py b/people-and-planet-ai/weather-forecasting/tests/dataset_tests/noxfile_config.py index e4d26a8e396a..556f95b09333 100644 --- a/people-and-planet-ai/weather-forecasting/tests/dataset_tests/noxfile_config.py +++ b/people-and-planet-ai/weather-forecasting/tests/dataset_tests/noxfile_config.py @@ -25,7 +25,7 @@ # 💡 Only test with Python 3.10 # "ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.11"], # Temp disable until team has time for refactoring tests - "ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"], + "ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"], # Old samples are opted out of enforcing Python type hints # All new samples should feature them "enforce_type_hints": True, diff --git a/people-and-planet-ai/weather-forecasting/tests/overview_tests/noxfile_config.py b/people-and-planet-ai/weather-forecasting/tests/overview_tests/noxfile_config.py index ee3db414b360..b5d2890bfa83 100644 --- a/people-and-planet-ai/weather-forecasting/tests/overview_tests/noxfile_config.py +++ b/people-and-planet-ai/weather-forecasting/tests/overview_tests/noxfile_config.py @@ -23,7 +23,7 @@ TEST_CONFIG_OVERRIDE = { # You can opt out from the test for specific Python versions. # 💡 Only test with Python 3.10 - "ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.11"], + "ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.11", "3.12"], # Old samples are opted out of enforcing Python type hints # All new samples should feature them "enforce_type_hints": True, diff --git a/people-and-planet-ai/weather-forecasting/tests/predictions_tests/noxfile_config.py b/people-and-planet-ai/weather-forecasting/tests/predictions_tests/noxfile_config.py index ee3db414b360..b5d2890bfa83 100644 --- a/people-and-planet-ai/weather-forecasting/tests/predictions_tests/noxfile_config.py +++ b/people-and-planet-ai/weather-forecasting/tests/predictions_tests/noxfile_config.py @@ -23,7 +23,7 @@ TEST_CONFIG_OVERRIDE = { # You can opt out from the test for specific Python versions. # 💡 Only test with Python 3.10 - "ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.11"], + "ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.11", "3.12"], # Old samples are opted out of enforcing Python type hints # All new samples should feature them "enforce_type_hints": True, diff --git a/people-and-planet-ai/weather-forecasting/tests/training_tests/noxfile_config.py b/people-and-planet-ai/weather-forecasting/tests/training_tests/noxfile_config.py index ee3db414b360..b5d2890bfa83 100644 --- a/people-and-planet-ai/weather-forecasting/tests/training_tests/noxfile_config.py +++ b/people-and-planet-ai/weather-forecasting/tests/training_tests/noxfile_config.py @@ -23,7 +23,7 @@ TEST_CONFIG_OVERRIDE = { # You can opt out from the test for specific Python versions. # 💡 Only test with Python 3.10 - "ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.11"], + "ignored_versions": ["2.7", "3.6", "3.7", "3.8", "3.9", "3.11", "3.12"], # Old samples are opted out of enforcing Python type hints # All new samples should feature them "enforce_type_hints": True,