Skip to content

Commit

Permalink
test: update all test dependencies (#1023)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 11, 2025
1 parent 30a5ee9 commit f3d8c31
Show file tree
Hide file tree
Showing 16 changed files with 64 additions and 64 deletions.
6 changes: 3 additions & 3 deletions tests/fixtures/example_project/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ authors = []
[tool.poetry.dependencies]
python = ">=3.9"
arrow = "1.3.0"
click = "8.1.7"
click = "8.1.8"
isort = "5.13.2"
pkginfo = "1.11.2"
pkginfo = "1.12.0"
requests = "2.32.3"
urllib3 = "2.2.3"
urllib3 = "2.3.0"

[tool.poetry.dev-dependencies]
black = "24.10.0"
Expand Down
16 changes: 8 additions & 8 deletions tests/fixtures/pep_621_project/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@ requires-python = ">=3.9"
dependencies = [
"arrow==1.3.0",
"asyncio==3.4.3",
"click==8.1.7",
"click==8.1.8",
"isort==5.13.2",
"pkginfo==1.11.2",
"pkginfo==1.12.0",
"requests==2.32.3",
"urllib3==2.2.3",
"urllib3==2.3.0",
]

[project.optional-dependencies]
dev = [
"black==24.10.0",
"mypy==1.13.0",
"mypy==1.14.1",
]
test = ["pytest==8.3.3"]
plot = ["matplotlib==3.9.2"]
test = ["pytest==8.3.4"]
plot = ["matplotlib==3.10.0"]

[dependency-groups]
foo = [
"certifi==2024.8.30",
"certifi==2024.12.14",
"idna==3.10",
]
all = [{include-group = "foo"}, "packaging==24.1"]
all = [{include-group = "foo"}, "packaging==24.2"]

[build-system]
requires = ["setuptools>=61.0.0"]
Expand Down
10 changes: 5 additions & 5 deletions tests/fixtures/project_with_gitignore/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ version = "0.0.1"
requires-python = ">=3.9"
dependencies = [
"arrow==1.3.0",
"click==8.1.7",
"click==8.1.8",
"isort==5.13.2",
"pkginfo==1.11.2",
"pkginfo==1.12.0",
"requests==2.32.3",
"urllib3==2.2.3",
"urllib3==2.3.0",
]

[project.optional-dependencies]
dev = [
"black==24.10.0",
"mypy==1.13.0",
"mypy==1.14.1",
]
test = ["pytest==8.3.3"]
test = ["pytest==8.3.4"]

[build-system]
requires = ["setuptools>=61.0.0"]
Expand Down
16 changes: 8 additions & 8 deletions tests/fixtures/project_with_pdm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ version = "0.0.1"
requires-python = ">=3.9"
dependencies = [
"arrow==1.3.0",
"pkginfo==1.11.2",
"urllib3==2.2.3",
"pkginfo==1.12.0",
"urllib3==2.3.0",
]

[project.optional-dependencies]
baz = [
"click==8.1.7",
"click==8.1.8",
"isort==5.13.2",
]
bar = ["requests==2.32.3"]
Expand All @@ -20,19 +20,19 @@ version = {source = "scm"}

[dependency-groups]
foo = [
"certifi==2024.8.30",
"certifi==2024.12.14",
"idna==3.10",
]
all = [{include-group = "foo"}, "packaging==24.1"]
all = [{include-group = "foo"}, "packaging==24.2"]

[tool.pdm.dev-dependencies]
lint = [
"black==24.10.0",
"mypy==1.13.0",
"mypy==1.14.1",
]
test = [
"pytest==8.3.3",
"pytest-cov==5.0.0",
"pytest==8.3.4",
"pytest-cov==6.0.0",
]

[tool.deptry]
Expand Down
12 changes: 6 additions & 6 deletions tests/fixtures/project_with_poetry/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ authors = []
[tool.poetry.dependencies]
python = ">=3.9"
arrow = "1.3.0"
pkginfo = "1.11.2"
urllib3 = "2.2.3"
pkginfo = "1.12.0"
urllib3 = "2.3.0"

click = { version = "8.1.7", optional = true }
click = { version = "8.1.8", optional = true }
isort = { version = "5.13.2", optional = true }
requests = { version = "2.32.3", optional = true }

Expand All @@ -23,11 +23,11 @@ bar = ["requests"]

[tool.poetry.group.lint.dependencies]
black = "24.10.0"
mypy = "1.13.0"
mypy = "1.14.1"

[tool.poetry.group.test.dependencies]
pytest = "8.3.3"
pytest-cov = "5.0.0"
pytest = "8.3.4"
pytest-cov = "6.0.0"

[tool.deptry.per_rule_ignores]
DEP002 = ["pkginfo"]
12 changes: 6 additions & 6 deletions tests/fixtures/project_with_poetry_pep_621/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = []
requires-python = ">=3.9"
dependencies = [
"arrow==1.3.0",
"pkginfo==1.11.2",
"pkginfo==1.12.0",
"requests",
]

Expand All @@ -15,20 +15,20 @@ requests = { git = "https://github.com/psf/requests", tag = "v2.32.3" }

[project.optional-dependencies]
foo = [
"click==8.1.7",
"click==8.1.8",
"isort==5.13.2",
]
bar = ["urllib3==2.2.3"]
bar = ["urllib3==2.3.0"]

[tool.poetry.dev-dependencies]
black = "24.10.0"

[tool.poetry.group.lint.dependencies]
mypy = "1.13.0"
mypy = "1.14.1"

[tool.poetry.group.test.dependencies]
pytest = "8.3.3"
pytest-cov = "5.0.0"
pytest = "8.3.4"
pytest-cov = "6.0.0"

[tool.deptry.per_rule_ignores]
DEP002 = ["pkginfo"]
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ version = "0.0.1"
requires-python = ">=3.9"
dependencies = [
"arrow==1.3.0",
"click==8.1.7",
"click==8.1.8",
"isort==5.13.2",
"pkginfo==1.11.2",
"pkginfo==1.12.0",
"requests==2.32.3",
"urllib3==2.2.3",
"urllib3==2.3.0",
]

[project.optional-dependencies]
dev = [
"black==24.10.0",
"mypy==1.13.0",
"mypy==1.14.1",
]
test = ["pytest==8.3.3"]
test = ["pytest==8.3.4"]

[build-system]
requires = ["setuptools>=61.0.0"]
Expand Down
6 changes: 3 additions & 3 deletions tests/fixtures/project_with_requirements_in/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
#
# pip-compile
#
click==8.1.7
click==8.1.8
# via
# -r requirements.in
# uvicorn
h11==0.14.0
# via uvicorn
isort==5.13.2
# via -r requirements.in
urllib3==2.2.3
urllib3==2.3.0
# via -r requirements.in
uvicorn==0.32.0
uvicorn==0.34.0
# via -r requirements.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
urllib3==2.2.3
urllib3==2.3.0
Original file line number Diff line number Diff line change
@@ -1 +1 @@
types-jsonschema==4.23.0.20240813
types-jsonschema==4.23.0.20241208
4 changes: 2 additions & 2 deletions tests/fixtures/project_with_requirements_txt/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-r requirements-from-other.txt
arrow==1.3.0
click==8.1.7
pkginfo==1.11.2
click==8.1.8
pkginfo==1.12.0
requests==2.32.3
Original file line number Diff line number Diff line change
@@ -1 +1 @@
click==8.1.7
click==8.1.8
Original file line number Diff line number Diff line change
@@ -1 +1 @@
packaging==24.1
packaging==24.2
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
arrow==1.3.0
pkginfo==1.11.1
pkginfo==1.12.0
requests==2.32.3
10 changes: 5 additions & 5 deletions tests/fixtures/project_with_src_directory/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ version = "0.0.1"
requires-python = ">=3.9"
dependencies = [
"arrow==1.3.0",
"click==8.1.7",
"click==8.1.8",
"isort==5.13.2",
"pkginfo==1.11.2",
"pkginfo==1.12.0",
"requests==2.32.3",
"urllib3==2.2.3",
"urllib3==2.3.0",
]

[project.optional-dependencies]
dev = [
"black==24.10.0",
"mypy==1.13.0",
"mypy==1.14.1",
]
test = ["pytest==8.3.3"]
test = ["pytest==8.3.4"]

[build-system]
requires = ["setuptools>=61.0.0"]
Expand Down
16 changes: 8 additions & 8 deletions tests/fixtures/project_with_uv/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,30 @@ version = "0.0.1"
requires-python = ">=3.9"
dependencies = [
"arrow==1.3.0",
"pkginfo==1.11.2",
"urllib3==2.2.3",
"pkginfo==1.12.0",
"urllib3==2.3.0",
]

[project.optional-dependencies]
foo = [
"click==8.1.7",
"click==8.1.8",
"isort==5.13.2",
]
bar = ["requests==2.32.3"]

[dependency-groups]
foo = [
"certifi==2024.8.30",
"certifi==2024.12.14",
"idna==3.10",
]
all = [{include-group = "foo"}, "packaging==24.1"]
all = [{include-group = "foo"}, "packaging==24.2"]

[tool.uv]
dev-dependencies = [
"black==24.10.0",
"mypy==1.13.0",
"pytest==8.3.3",
"pytest-cov==5.0.0",
"mypy==1.14.1",
"pytest==8.3.4",
"pytest-cov==6.0.0",
]

[tool.deptry]
Expand Down

0 comments on commit f3d8c31

Please sign in to comment.