Skip to content

Commit

Permalink
Merge pull request #59 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 3b6b285 + 9458a65 commit 6d9a155
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
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).

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

## [0.1.4]
### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,14 @@ jobs:
uses: ASFHyP3/actions/.github/workflows/[email protected]
with:
local_package_name: {{ cookiecutter.__package_name }}
python_versions: >-
["3.10", "3.11", "3.12"]
call-version-info-workflow:
# Docs: https://github.com/ASFHyP3/actions
uses: ASFHyP3/actions/.github/workflows/[email protected]
with:
python_version: "3.10"

call-docker-ghcr-workflow:
needs: call-version-info-workflow
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.__project_name}}/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.10
- pip
# For packaging, and testing
- flake8
Expand Down
5 changes: 2 additions & 3 deletions {{cookiecutter.__project_name}}/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 = "{{ cookiecutter.__package_name }}"
requires-python = ">=3.8"
requires-python = ">=3.10"
authors = [
{name="{{ cookiecutter.github_username }}", email="{{ cookiecutter.github_email }}"},
]
Expand All @@ -16,10 +16,9 @@ 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 = [
"hyp3lib>=3,<4",
Expand Down

0 comments on commit 6d9a155

Please sign in to comment.