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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ name: CI
on: [push, pull_request]

env:
UV_VERSION: "0.8.4"
UV_VERSION: "0.9.3"

jobs:
test:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13" ]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14" ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v7
with:
version: ${{ env.UV_VERSION }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install Package
Expand All @@ -31,13 +31,13 @@ jobs:
matrix:
nox-session: ["lint", "type_check"]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v7
with:
version: ${{ env.UV_VERSION }}
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version-file: ".python-version"
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.12
3.13
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ options.default_venv_backend = "uv"


@session(
python=["3.10", "3.11", "3.12", "3.13"],
python=["3.10", "3.11", "3.12", "3.13", "3.14"],
uv_groups=["test"],
)
def test(s: Session) -> None:
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


@session(
python=["3.9", "3.10", "3.11", "3.12", "3.13"],
python=["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"],
uv_groups=["test"],
)
def test(s: Session) -> None:
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Testing",
"Typing :: Typed",
]
Expand All @@ -36,7 +37,7 @@ Repository = "https://github.com/dantebben/nox-uv"
Issues = "https://github.com/dantebben/nox-uv/issues"

[build-system]
requires = ["uv_build>=0.8.4,<0.9.0"]
requires = ["uv_build>=0.9.0,<0.10.0"]
build-backend = "uv_build"

[dependency-groups]
Expand All @@ -45,7 +46,9 @@ lint = [
]
test = [
"pytest>=8.4.0",
"pytest-cov>=6.0.0",
"pytest-cov>=6.1.1",
# TODO: Remove this pin when CoverageWarnings are fixed.
"coverage==7.10.7",
]
type_check = [
"mypy>=1.15.0",
Expand Down
2 changes: 1 addition & 1 deletion tests/subproject/.python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.12
3.13
2 changes: 1 addition & 1 deletion tests/subproject/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies = [
nox-uv = { path = "../../", editable = true }

[build-system]
requires = ["uv_build>=0.8.4,<0.9.0"]
requires = ["uv_build>=0.9.0,<0.10.0"]
build-backend = "uv_build"


Expand Down
3 changes: 2 additions & 1 deletion tests/subproject/uv.lock

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

689 changes: 481 additions & 208 deletions uv.lock

Large diffs are not rendered by default.