Skip to content

Commit

Permalink
Merge pull request #236 from ASFHyP3/deprecate_python38
Browse files Browse the repository at this point in the history
Remove Support for Python 3.8 and 3.9
  • Loading branch information
AndrewPlayer3 authored Jun 26, 2024
2 parents f50b8b9 + b2d9184 commit 85b69a2
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
call-version-info-workflow:
uses: ASFHyP3/actions/.github/workflows/reusable-version-info.yml@v0.11.0
with:
python_version: "3.10"

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

## [0.8.0]

### Removed
- Support for Python 3.8 and 3.9 has been removed.

## [0.7.2]

Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ channels:
# - esri # windows only
- nodefaults
dependencies:
- python>=3.8, <3.12
- python>=3.10, <3.12
- pip
# For packaging, and testing
# - arcpy # windows only
Expand Down
2 changes: 1 addition & 1 deletion prototype/osl-env.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.10, <3.12
- pip
# For running
- asf_search>=0.4
Expand Down
5 changes: 2 additions & 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 = "asf_tools"
requires-python = ">=3.8"
requires-python = ">=3.10"
authors = [
{name="ASF APD/Tools Team", email="uaf-asf-apd@alaska.edu"},
]
Expand All @@ -17,9 +17,8 @@ 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",
]
dependencies = [
"astropy",
Expand Down

0 comments on commit 85b69a2

Please sign in to comment.