Skip to content
Open
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
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,17 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.14", "3.13", "3.12", "3.11", "3.10"]
python-version: ["3.15", "3.14", "3.13", "3.12", "3.11", "3.10"]
steps:
- name: Checkout
uses: actions/checkout@v5

- name: Install uv and set the Python version
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v10.0.0
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
version: "latest-known"

- name: Install dependencies
run: uv sync --locked --dev
Expand Down
2 changes: 2 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Unreleased

* Fix mutations that delete ignored code. Dropping a `case` from a `match`, or an argument from a call, is a mutation of the enclosing node, so it used to be made even when the removed lines were themselves ignored

* Support python3.15

3.7.0
~~~~~

Expand Down
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,15 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
]

dependencies = [
"click>=8.0.0",
"click>=8.4.2",
"coverage>=7.3.0",
"libcst>=1.8.5",
"libcst>=1.9.0",
"pytest>=6.2.5",
"setproctitle>=1.1.0",
"setproctitle>=1.3.7",
"textual>=1.0.0",
"toml>=0.10.2 ; python_full_version < '3.11'",
]
Expand All @@ -45,7 +46,7 @@ Changelog = "https://github.com/boxed/mutmut/blob/main/HISTORY.rst"
mutmut = "mutmut.__main__:cli"

[build-system]
requires = ["uv_build>=0.9.5,<0.10.0"]
requires = ["uv_build>=0.12.3,<1"]
build-backend = "uv_build"

[tool.uv.build-backend]
Expand All @@ -55,7 +56,7 @@ source-include = ["HISTORY.rst"]
dev = [
"inline-snapshot>=0.32.0",
"mypy>=1.20.1",
"pre-commit>=4.5.1",
"pre-commit>=4.6.2",
"pyrefly>=0.59.1",
"pytest-asyncio>=1.0.0",
"ruff>=0.15.7",
Expand Down
Loading