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: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: CI

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

env:
UV_VERSION: "0.10.2"
UV_VERSION: "0.11.3"

jobs:
test:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t" ]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t" ]
steps:
- uses: actions/checkout@v5
- name: Install uv
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", "3.14", "3.14t"],
python=["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"],
uv_groups=["test"],
)
def test(s: Session) -> None:
Expand Down
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
build-backend = "uv_build"
requires = [ "uv-build>=0.9,<0.10" ]
requires = [ "uv-build>=0.9,<0.12" ]

[project]
name = "nox-uv"
Expand All @@ -11,15 +11,13 @@ keywords = [ "nox", "uv" ]
license = "MIT"
license-files = [ "LICENSE.txt" ]
authors = [ { name = "Dan Tebben", email = "dantebben@gmail.com" } ]
requires-python = ">=3.9"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down
4 changes: 2 additions & 2 deletions src/nox_uv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

from collections.abc import Callable, Sequence
import functools
from typing import Any, TypeVar, Union
from typing import Any, TypeVar

import nox

R = TypeVar("R")

Python = Union[Sequence[str], str, bool]
Python = Sequence[str] | str | bool


def session(
Expand Down
5 changes: 2 additions & 3 deletions tests/subproject/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
[build-system]
build-backend = "uv_build"
requires = [ "uv-build>=0.9,<0.10" ]
requires = [ "uv-build>=0.9,<0.12" ]

[project]
name = "subproject"
version = "0.1.0"
description = "Project for testing nox-uv"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
classifiers = [
"Private :: Do Not Upload",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down
104 changes: 7 additions & 97 deletions tests/subproject/uv.lock

Large diffs are not rendered by default.

328 changes: 21 additions & 307 deletions uv.lock

Large diffs are not rendered by default.

Loading