Skip to content

Commit 3ffd142

Browse files
committed
Add development dependencies to dependency-groups
1 parent 2075eeb commit 3ffd142

File tree

2 files changed

+836
-3
lines changed

2 files changed

+836
-3
lines changed

pyproject.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,24 @@ Source = 'https://github.com/pydantic/pydantic-settings'
5858
Changelog = 'https://github.com/pydantic/pydantic-settings/releases'
5959
Documentation = 'https://docs.pydantic.dev/dev-v2/concepts/pydantic_settings/'
6060

61+
[dependency-groups]
62+
linting = [
63+
"black",
64+
"mypy",
65+
"pre-commit",
66+
"pyupgrade",
67+
"pyyaml",
68+
"ruff",
69+
"types-pyyaml",
70+
]
71+
testing = [
72+
"coverage[toml]",
73+
"pytest",
74+
"pytest-examples",
75+
"pytest-mock",
76+
"pytest-pretty",
77+
]
78+
6179
[tool.pytest.ini_options]
6280
testpaths = 'tests'
6381
filterwarnings = [

0 commit comments

Comments
 (0)