From d6408ad560f7b40838665f9874d6e40e1b2b749e Mon Sep 17 00:00:00 2001 From: Kurt Schwehr Date: Fri, 18 Oct 2024 15:07:14 -0700 Subject: [PATCH] Drop support for Python 3.8 now that it is end-of-life. PiperOrigin-RevId: 687437057 --- .github/workflows/ci-tests.yml | 1 - python/pyproject.toml | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 78bf30240..0d93f475c 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -15,7 +15,6 @@ jobs: matrix: os: [ubuntu-latest] python-version: [ - "3.8", "3.9", "3.10", "3.11", diff --git a/python/pyproject.toml b/python/pyproject.toml index ca2c9effe..b5052d1ca 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -3,7 +3,7 @@ name = "earthengine-api" version = "0.0.0" description = "Earth Engine Python API" readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.9" keywords = [ "earth engine", "image analysis", @@ -22,7 +22,6 @@ classifiers = [ "Operating System :: OS Independent", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",