Skip to content

Commit

Permalink
Merge pull request #242 from ASFHyP3/jhkennedy-patch-1
Browse files Browse the repository at this point in the history
Explicitly support python 3.9->3.12
  • Loading branch information
jhkennedy authored Nov 2, 2023
2 parents 1870920 + 04a2f7f commit ec72fcd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
- nodefaults
dependencies:
- python>=3.8
- python>=3.9
- pip
# For packaging, and testing
- build
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]"},
]
Expand All @@ -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",
Expand Down

0 comments on commit ec72fcd

Please sign in to comment.