Skip to content

Commit 49e04da

Browse files
🎳 Support Python 3.10 and later, drop Python 3.9
1 parent 3d22ffa commit 49e04da

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
strategy:
4646
fail-fast: false
4747
matrix:
48-
python-version: ["3.9", "3.12", "3.13"]
48+
python-version: ["3.10", "3.13", "3.14"]
4949
runs-on:
5050
[
5151
ubuntu-latest,
@@ -104,15 +104,15 @@ jobs:
104104
matrix:
105105
runs-on: [ubuntu-latest, windows-latest]
106106
architecture: [arm64, i686]
107-
python-version: ["3.9", "3.12", "3.13"]
107+
python-version: ["3.10", "3.13", "3.14"]
108108
# Exclude i686 on Linux for all Python versions
109109
# Test just one Python version on Windows for now
110110
exclude:
111111
- runs-on: ubuntu-latest
112112
architecture: i686
113-
- python-version: "3.9"
113+
- python-version: "3.10"
114114
runs-on: windows-latest
115-
- python-version: "3.13"
115+
- python-version: "3.14"
116116
runs-on: windows-latest
117117
steps:
118118
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
Binaries for the **`extended` + `withdeploy` edition** of the Hugo static site generator, installable via `pip`
3131

32-
This project provides wheels for [Hugo](https://gohugo.io/) so that it can be used with `pip` on macOS, Linux, and Windows; for Python 3.9 and later.
32+
This project provides wheels for [Hugo](https://gohugo.io/) so that it can be used with `pip` on macOS, Linux, and Windows; for Python 3.10 and later.
3333

3434
> [!NOTE]
3535
> Only the latest, stable, and to-be EOL Python versions are tested regularly. If you encounter any issues with the package on a specific Python version, please feel free to [open an issue](https://github.com/agriyakhetarpal/hugo-python-distributions/issues/new).

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ description = "Binaries for the 'extended + withdeploy' edition of the Hugo stat
2020
readme = "README.md"
2121
license = "Apache-2.0"
2222
license-files = ["LICENSE", "LICENSE-hugo.txt"]
23-
requires-python = "~=3.9"
23+
requires-python = ">=3.10"
2424
dynamic = ["version"]
2525
classifiers = [
2626
"Development Status :: 3 - Alpha",
@@ -34,11 +34,11 @@ classifiers = [
3434
"Programming Language :: Python",
3535
"Programming Language :: Python :: 3",
3636
"Programming Language :: Python :: 3 :: Only",
37-
"Programming Language :: Python :: 3.9",
3837
"Programming Language :: Python :: 3.10",
3938
"Programming Language :: Python :: 3.11",
4039
"Programming Language :: Python :: 3.12",
4140
"Programming Language :: Python :: 3.13",
41+
"Programming Language :: Python :: 3.14",
4242
"Topic :: Internet",
4343
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System",
4444
"Topic :: Internet :: WWW/HTTP :: Browsers",

0 commit comments

Comments
 (0)