Skip to content

Commit 59922ee

Browse files
committed
use native pyproject.toml project section
1 parent 6869827 commit 59922ee

File tree

2 files changed

+18
-10
lines changed

2 files changed

+18
-10
lines changed

poetry.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.

pyproject.toml

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
[tool.poetry]
1+
[project]
22
name = "guardrails-jsonformer"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
description = "A fork of 1rgs' jsonformer maintained by Guardrails AI"
5-
authors = ["1rgs <[email protected]>"]
6-
maintainers = ["Guardrails AI <[email protected]>"]
5+
authors = [
6+
{name = "1rgs", email = "[email protected]"}
7+
]
8+
maintainers = [
9+
{name = "Guardrails AI", email = "[email protected]"}
10+
]
711
homepage = "https://github.com/guardrails-ai/jsonformer"
812
readme = "README.md"
9-
package-mode = true
10-
packages = [
11-
{ include = "jsonformer", from = "." }
12-
]
13+
requires-python = ">=3.9,<4.0"
14+
1315

1416
[tool.poetry.dependencies]
1517
# Bc triton, a dependency of torch, requires this range
@@ -25,9 +27,15 @@ bitsandbytes = "<0.43.0"
2527

2628

2729
[build-system]
28-
requires = ["poetry-core"]
30+
requires = ["poetry-core>=2.0.0"]
2931
build-backend = "poetry.core.masonry.api"
3032

33+
[tool.poetry]
34+
package-mode = true
35+
packages = [
36+
{ include = "jsonformer", from = "." }
37+
]
38+
3139
[virtualenvs]
3240
create = true
3341
in-project = true

0 commit comments

Comments
 (0)