Skip to content

Commit

Permalink
Drop Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lafrech committed Oct 17, 2024
1 parent 51b150f commit a9d94b4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
fail-fast: false
matrix:
include:
- { name: "3.8", python: "3.8", tox: py38-marshmallow3 }
- { name: "3.9", python: "3.9", tox: py39-marshmallow3 }
- { name: "3.12", python: "3.12", tox: py312-marshmallow3 }
- { name: "lowest", python: "3.8", tox: py38-lowest }
- { name: "lowest", python: "3.9", tox: py39-lowest }
- { name: "dev", python: "3.12", tox: py312-marshmallowdev }
steps:
- uses: actions/checkout@v4.0.0
Expand Down
3 changes: 0 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,6 @@ Install

pip install -U webargs

webargs supports Python >= 3.8.


Documentation
=============

Expand Down
2 changes: 1 addition & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Install
=======

**webargs** requires Python >= 3.8. It depends on `marshmallow <https://marshmallow.readthedocs.io/en/latest/>`_ >= 3.0.0.
**webargs** depends on `marshmallow <https://marshmallow.readthedocs.io/en/latest/>`_ >= 3.0.0.

From the PyPI
-------------
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -40,7 +39,7 @@ keywords = [
"api",
"marshmallow",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = ["marshmallow>=3.0.0", "packaging>=17.0"]

[project.urls]
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
envlist=
lint
py{38,39,310,311,312}-marshmallow3
py{39,310,311,312}-marshmallow3
py312-marshmallowdev
py38-lowest
py39-lowest
docs

[testenv]
Expand Down

0 comments on commit a9d94b4

Please sign in to comment.