Skip to content

Commit e17c711

Browse files
chore(deps): update dependency pytest to v8 (#45)
* chore(deps): update dependency pytest to v8 * tests: Remove upper bound on dependencies * chore: Update poetry.lock --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Brad Keryan <[email protected]>
1 parent dbe1a42 commit e17c711

File tree

2 files changed

+34
-18
lines changed

2 files changed

+34
-18
lines changed

.github/test_projects/extras-and-dependency-groups/poetry.lock

Lines changed: 28 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/test_projects/extras-and-dependency-groups/pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ packages = [{include = "test_project", from = "src"}]
99
[tool.poetry.dependencies]
1010
ni-python-styleguide = ">=0.4.7"
1111
python = "^3.9"
12-
requests = "^2.28.0"
12+
requests = ">=2.28.0"
1313
# Optional dependencies for extras
14-
colorama = {version = "^0.4.0", optional = true}
15-
tomli = {version = "^2.0.0", optional = true}
14+
colorama = {version = ">=0.4.0", optional = true}
15+
tomli = {version = ">=2.0.0", optional = true}
1616

1717
[tool.poetry.extras]
1818
# Small utility packages for testing extras
@@ -21,15 +21,15 @@ serialization = ["tomli"]
2121

2222
[tool.poetry.group.dev.dependencies]
2323
# Small packages for testing dependency groups
24-
pytest = "^7.0.0"
24+
pytest = ">=8.0.0"
2525

2626
[tool.poetry.group.docs.dependencies]
2727
# Small documentation-related packages
28-
markdown = "^3.4.0"
28+
markdown = ">=3.4.0"
2929

3030
[tool.poetry.group.utils.dependencies]
3131
# Small utility packages
32-
click = "^8.0.0"
32+
click = ">=8.0.0"
3333

3434
[build-system]
3535
requires = ["poetry-core>=2.0.0,<3.0.0"]

0 commit comments

Comments
 (0)