Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@ jobs:
fail-fast: false
matrix:
include:
- { name: "3.10-ma3", tox: py310-marshmallow3 }
- { name: "3.14-ma3", tox: py314-marshmallow3 }
- { name: "3.10-ma4", tox: py310-marshmallow4 }
- { name: "3.14-ma4", tox: py314-marshmallow4 }
- { name: "3.10", tox: py310 }
- { name: "3.14", tox: py314 }
- { name: "lowest", tox: py310-lowest }
- { name: "dev", tox: py314-marshmallowdev }
steps:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ unreleased
Support:

- Support Python 3.10-3.14.
- Drop support for marshmallow 3, which is EOL.

3.2.0 (2025-05-08)
******************
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ classifiers = [
"Programming Language :: Python :: 3.14",
]
requires-python = ">=3.10"
dependencies = ["marshmallow>=3.0.0,<5.0.0"]
dependencies = ["marshmallow>=4.0.0,<5.0.0"]

[project.urls]
Issues = "https://github.com/marshmallow-code/marshmallow-oneofschema/issues"
Expand Down
7 changes: 2 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
[tox]
envlist=
lint
py{310,314}-marshmallow3
py{310,311,312,313,314}-marshmallow4
py{310,311,312,313,314}
py314-marshmallowdev
py310-lowest

[testenv]
dependency_groups = tests
deps =
marshmallow3: marshmallow>=3.0.0,<4.0.0
marshmallow4: marshmallow>=4.0.0,<5.0.0
marshmallowdev: https://github.com/marshmallow-code/marshmallow/archive/dev.tar.gz
lowest: marshmallow==3.0.0
lowest: marshmallow==4.0.0
commands = pytest {posargs}

[testenv:lint]
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

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

Loading