Skip to content

Commit

Permalink
Merge pull request #69 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 53819f7 + 7eafe06 commit 7ecdc24
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/distribute.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
jobs:
call-version-info-workflow:
uses: ASFHyP3/actions/.github/workflows/[email protected]
with:
python_version: "3.10"

distribute:
runs-on: ubuntu-latest
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.4.0]

### Removed
* Dropped support for Python 3.8 and 3.9. The new minimum version is 3.10.

## [0.3.2]

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ for ASF.

## Quickstart

This theme is distributed on [PyPI](https://pypi.org/project/mkdocs-asf-theme/) and can be installed into a Python 3.8+ environment using `pip`:
This theme is distributed on [PyPI](https://pypi.org/project/mkdocs-asf-theme/) and can be installed into a Python 3.10+ environment using `pip`:
```
python -m pip install mkdocs-asf-theme
```
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
- pip
# For packaging and distribution
- build
Expand Down
6 changes: 3 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 = "mkdocs-asf-theme"
requires-python = ">=3.8"
requires-python = ">=3.10"
authors = [
{name="ASF APD/Tools Team", email="[email protected]"},
]
Expand All @@ -17,9 +17,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 = [
"mkdocs",
Expand Down

0 comments on commit 7ecdc24

Please sign in to comment.