diff --git a/CHANGELOG.md b/CHANGELOG.md index 63ffe51..8b1d0d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/) and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [3.2.0] +### Added +* The HyP3 SDK now explicitly supports Python 3.9-3.12 +### Removed +* Support for Python 3.8 has been dropped. + ## [3.1.0] ### Added * Added the `phase_filter_parameter` keyword argument for the `HyP3.submit_insar_job` and `HyP3.prepare_insar_job` methods. diff --git a/environment.yml b/environment.yml index 2445ab7..67f1fae 100644 --- a/environment.yml +++ b/environment.yml @@ -3,7 +3,7 @@ channels: - conda-forge - nodefaults dependencies: - - python>=3.8 + - python>=3.9 - pip # For packaging, and testing - build diff --git a/pyproject.toml b/pyproject.toml index aa90cf1..44f8003 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "hyp3_sdk" -requires-python = ">=3.8" +requires-python = ">=3.9" authors = [ {name="ASF APD/Tools Team", email="uaf-asf-apd@alaska.edu"}, ] @@ -17,9 +17,10 @@ classifiers=[ "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] dependencies = [ "python-dateutil",