Skip to content

Commit

Permalink
build(python): update supported Python versions to 3.9 to 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
noirbizarre committed Nov 27, 2024
1 parent 4f088e7 commit d8886f8
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 178 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,12 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13", "pypy-3.8"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.9"]
os: [ubuntu-latest, windows-latest, macos-latest]
exclude:
- python-version: 3.8
os: macos-latest
- python-version: 3.9
os: macos-latest
include:
- python-version: 3.8
os: macos-13
- python-version: 3.9
os: macos-13

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ version = "0.1.0"
description = "A project built with PDM-Backend"
authors = [{name = "John Doe", email="[email protected]"}]
dependencies = ["requests"]
requires-python = ">=3.8"
requires-python = ">=3.9"
readme = "README.md"
license = "MIT"
```
Expand Down
194 changes: 27 additions & 167 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ authors = [
{ name = "Frost Ming", email = "[email protected]" }
]
license = {text = "MIT"}
requires-python = ">=3.8"
requires-python = ">=3.9"
readme = "README.md"
keywords = ["packaging", "PEP 517", "build"]
dynamic = ["version"]
Expand All @@ -16,11 +16,11 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Build Tools",
"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",
"Programming Language :: Python :: 3.13",
]

dependencies = [
Expand Down Expand Up @@ -98,7 +98,6 @@ test = [
dev = [
"editables>=0.3",
"pre-commit>=2.21.0",
"vendoring>=1.2.0; python_version ~= \"3.8\"",
]
docs = [
"mkdocs>=1.4.2",
Expand Down
Loading

0 comments on commit d8886f8

Please sign in to comment.