diff --git a/poetry.lock b/poetry.lock index 709e2f0..40159ef 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1202,4 +1202,4 @@ test = ["big-O", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-it [metadata] lock-version = "2.1" python-versions = ">=3.9" -content-hash = "fffe966c3b41e58d934cccdcf0a556dea4d158d927e0a043f24c34e13a2e9762" +content-hash = "b6b0ffe995042d4a39063346420d0add9a735dd05961782bde7f744f4c56f0a9" diff --git a/pyproject.toml b/pyproject.toml index a1989e9..741c0fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,14 +23,16 @@ include = [ { path = "CHANGELOG.md", format = "sdist" }, ] -[tool.poetry.group.dev.dependencies] -pytest = "^7.2.0" -pytest-cov = "^4.0.0" -PyYAML = "^6.0" -pre-commit = "^2.20.0" -mypy = "1.19.1" -Sphinx = "^4.3.2" -furo = "^2022.9.29" +[dependency-groups] +dev = [ + "pytest~=7.2", + "pytest-cov~=4.0", + "PyYAML~=6.0", + "pre-commit~=2.20", + "mypy==1.19.1", + "Sphinx>=4.3.2,<5.0.0", + "furo>=2022.9.29,<2023.0.0", +] [tool.ruff.lint] extend-select = [ @@ -64,5 +66,5 @@ enable_error_code = [ ] [build-system] -requires = ["poetry-core>=2.0.0"] +requires = ["poetry-core>=2.2.0"] build-backend = "poetry.core.masonry.api"