Skip to content

Commit 147c5a3

Browse files
authored
update to version 0.8.0 (#92)
1 parent cfed1b5 commit 147c5a3

7 files changed

Lines changed: 16 additions & 76 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = [ "uv-build>=0.11,<0.12" ]
44

55
[project]
66
name = "nox-uv"
7-
version = "0.7.2-dev0"
7+
version = "0.8.0"
88
description = "Facilitate nox integration with uv for Python projects"
99
readme = "README.md"
1010
keywords = [ "nox", "uv" ]

tests/subproject/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/subworkspace/package-one/pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
[build-system]
22
build-backend = "uv_build"
3-
requires = [ "uv-build>=0.11,<0.12" ]
3+
requires = ["uv-build>=0.11,<0.12"]
44

55
[project]
66
name = "package-one"
77
version = "0.1.0"
88
description = "Project for testing nox-uv"
99
readme = "README.md"
10-
requires-python = ">=3.9"
10+
requires-python = ">=3.10"
1111
classifiers = [
1212
"Private :: Do Not Upload",
1313
"Programming Language :: Python :: 3 :: Only",
14-
"Programming Language :: Python :: 3.9",
1514
"Programming Language :: Python :: 3.10",
1615
"Programming Language :: Python :: 3.11",
1716
"Programming Language :: Python :: 3.12",

tests/subworkspace/package-two/pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
[build-system]
22
build-backend = "uv_build"
3-
requires = [ "uv-build>=0.11,<0.12" ]
3+
requires = ["uv-build>=0.11,<0.12"]
44

55
[project]
66
name = "package-two"
77
version = "0.1.0"
88
description = "Project for testing nox-uv"
99
readme = "README.md"
10-
requires-python = ">=3.9"
10+
requires-python = ">=3.10"
1111
classifiers = [
1212
"Private :: Do Not Upload",
1313
"Programming Language :: Python :: 3 :: Only",
14-
"Programming Language :: Python :: 3.9",
1514
"Programming Language :: Python :: 3.10",
1615
"Programming Language :: Python :: 3.11",
1716
"Programming Language :: Python :: 3.12",

tests/subworkspace/pyproject.toml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ name = "subworkspace"
33
version = "0.1.0"
44
description = "Workspace for testing nox-uv"
55
readme = "README.md"
6-
requires-python = ">=3.9"
6+
requires-python = ">=3.10"
77
classifiers = [
88
"Private :: Do Not Upload",
99
"Programming Language :: Python :: 3 :: Only",
10-
"Programming Language :: Python :: 3.9",
1110
"Programming Language :: Python :: 3.10",
1211
"Programming Language :: Python :: 3.11",
1312
"Programming Language :: Python :: 3.12",
@@ -20,7 +19,4 @@ dependencies = ["nox-uv"]
2019
sources.nox-uv = { path = "../../", editable = true }
2120

2221
[tool.uv.workspace]
23-
members = [
24-
"package-one",
25-
"package-two",
26-
]
22+
members = ["package-one", "package-two"]

tests/subworkspace/uv.lock

Lines changed: 7 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)