Skip to content

Commit 12632e8

Browse files
committed
feat: ✨ Ensure we also install extras
1 parent 31da1bb commit 12632e8

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ _install-pre-commit:
1919
#!powershell.exe
2020
Write-Host "Please ensure pre-commit hooks are installed using 'pre-commit install --install-hooks'"
2121

22-
install: (uv "sync" "--group" "dev") && _install-pre-commit
22+
install: (uv "sync" "--group" "dev" "--all-extras") && _install-pre-commit
2323

24-
update: (uv "sync" "--group" "dev")
24+
update: (uv "sync" "--group" "dev" "--all-extras")
2525

2626
uv *args:
2727
uv {{args}}

pyproject.toml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ readme = "README.md"
88
requires-python = ">=3.10"
99
dependencies = [
1010
"pydantic>=2.0.0,<3.0.0",
11-
"pytest>=7.4,<9.0",
1211
]
1312

1413
[project.optional-dependencies]
@@ -19,13 +18,13 @@ Repository = "https://github.com/team23/pydantic-async-validation"
1918

2019
[dependency-groups]
2120
dev = [
22-
"pytest>=7.1.2,<9.0.0",
23-
"pytest-cov>=3,<6",
24-
"pytest-asyncio>=0.21.1,<0.25.0",
25-
"tox>=3.26,<5.0",
26-
"httpx>=0.24.1,<0.29.0",
27-
"ruff>=0.5.0,<0.14.0",
28-
"pyright>=1.1.350,<1.2",
21+
"pytest>=8.4.2,<9.0.0",
22+
"pytest-cov>=7.0.0,<8",
23+
"pytest-asyncio>=0.24.0,<0.25.0",
24+
"tox>=4.30.3,<5.0",
25+
"httpx>=0.28.1,<0.29.0",
26+
"ruff>=0.13.3,<0.14.0",
27+
"pyright>=1.1.406,<1.2",
2928
]
3029

3130
[tool.ruff]

0 commit comments

Comments
 (0)