Skip to content

Commit

Permalink
Merge pull request #213 from ASFHyP3/deprecate_python38
Browse files Browse the repository at this point in the history
Drop Support for Python 3.8 and 3.9
  • Loading branch information
AndrewPlayer3 authored Jun 26, 2024
2 parents 8016d37 + ee24f24 commit 832454a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ jobs:
with:
local_package_name: hyp3_isce2
python_versions: >-
["3.9", "3.10"]
["3.10", "3.11"]
call-version-info-workflow:
# Docs: https://github.com/ASFHyP3/actions
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.11.1
with:
python_version: "3.10"

call-docker-ghcr-workflow:
needs: call-version-info-workflow
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ 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).

## [1.1.0]
### Removed
* Support for Python 3.8 and 3.9 has been dropped, 3.10 is now the minimum version.

## [1.0.1]
### Changed
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.9
- python>=3.10
- numpy
- pip
- isce2>=2.6.3
Expand Down
4 changes: 1 addition & 3 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_isce2"
requires-python = ">=3.8"
requires-python = ">=3.10"
authors = [
{name="tools-bot", email="UAF-asf-apd@alaska.edu"},
]
Expand All @@ -16,8 +16,6 @@ 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",
]
Expand Down

0 comments on commit 832454a

Please sign in to comment.