From 7e39f998b30f0517415a39c63bd7651fd723eb9a Mon Sep 17 00:00:00 2001 From: naschmitz Date: Wed, 6 Nov 2024 23:00:03 +0000 Subject: [PATCH] Update version numbers for v1.3.0 --- python/ee/__init__.py | 2 +- python/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/ee/__init__.py b/python/ee/__init__.py index 9c2363ab2..87ec7ec13 100644 --- a/python/ee/__init__.py +++ b/python/ee/__init__.py @@ -1,6 +1,6 @@ """The EE Python library.""" -__version__ = '1.3.0rc1' +__version__ = '1.3.0' # Using lowercase function naming to match the JavaScript names. # pylint: disable=g-bad-name diff --git a/python/pyproject.toml b/python/pyproject.toml index 9aa027f9d..2ef116010 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "earthengine-api" -version = "1.3.0rc1" +version = "1.3.0" description = "Earth Engine Python API" readme = "README.md" requires-python = ">=3.9"