Commit 4072c8a4 by Bjorn Neergaard

chore: organize dependencies in pyproject.toml using groups

parent 8794f349
...@@ -940,7 +940,7 @@ testing = ["func-timeout", "jaraco.itertools", "pytest (>=6)", "pytest-black (>= ...@@ -940,7 +940,7 @@ testing = ["func-timeout", "jaraco.itertools", "pytest (>=6)", "pytest-black (>=
[metadata] [metadata]
lock-version = "1.1" lock-version = "1.1"
python-versions = "^3.7" python-versions = "^3.7"
content-hash = "4a92037b2aea6f5648198caac9c2022c56e8f61cf3c52a9f47802b7be6ee56bd" content-hash = "b6d1389de19df902441273b60cf7eff634afbc238151e113dfc5092fc250ef52"
[metadata.files] [metadata.files]
attrs = [ attrs = [
......
...@@ -74,21 +74,25 @@ xattr = { version = "^0.9.7", markers = "sys_platform == 'darwin'" } ...@@ -74,21 +74,25 @@ xattr = { version = "^0.9.7", markers = "sys_platform == 'darwin'" }
urllib3 = "^1.26.0" urllib3 = "^1.26.0"
[tool.poetry.group.dev.dependencies] [tool.poetry.group.dev.dependencies]
pre-commit = "^2.6"
[tool.poetry.group.test.dependencies]
deepdiff = "^5.0"
flatdict = "^4.0.1"
httpretty = "^1.0"
pytest = "^7.1" pytest = "^7.1"
pytest-cov = "^4.0" pytest-cov = "^4.0"
pytest-mock = "^3.9" pytest-mock = "^3.9"
pytest-randomly = "^3.12" pytest-randomly = "^3.12"
pytest-xdist = { version = "^2.5", extras = ["psutil"] } pytest-xdist = { version = "^2.5", extras = ["psutil"] }
pre-commit = "^2.6"
deepdiff = "^5.0"
httpretty = "^1.0"
typing-extensions = { version = "^4.0.0", python = "<3.8" }
zipp = { version = "^3.4", python = "<3.8" } zipp = { version = "^3.4", python = "<3.8" }
flatdict = "^4.0.1"
[tool.poetry.group.typing.dependencies]
mypy = ">=0.971" mypy = ">=0.971"
types-html5lib = ">=1.1.9" types-html5lib = ">=1.1.9"
types-jsonschema = ">=4.9.0" types-jsonschema = ">=4.9.0"
types-requests = ">=2.28.8" types-requests = ">=2.28.8"
typing-extensions = { version = "^4.0.0", python = "<3.8" }
[tool.poetry.scripts] [tool.poetry.scripts]
poetry = "poetry.console.application:main" poetry = "poetry.console.application:main"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment