Skip to content

Commit cdcef21

Browse files
Update pytest requirement from <8.5.0,>=7.4.3 to >=7.4.3,<9.1.0 (#36)
* Update pytest requirement from <8.5.0,>=7.4.3 to >=7.4.3,<9.1.0 Updates the requirements on [pytest](https://github.com/pytest-dev/pytest) to permit the latest version. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](pytest-dev/pytest@7.4.3...9.0.2) --- updated-dependencies: - dependency-name: pytest dependency-version: 9.0.2 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> * Update pytest everywhere * Remove unneeded dependencies * Fix precommit --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steven Looman <steven.looman@gmail.com>
1 parent d5fc8b1 commit cdcef21

3 files changed

Lines changed: 8 additions & 10 deletions

File tree

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repos:
1111
args:
1212
- --safe
1313
- --quiet
14-
files: ^(async_upnp_client|tests)/.+\.py$
14+
files: ^(didl_lite|tests)/.+\.py$
1515
- repo: https://github.com/codespell-project/codespell
1616
rev: 'v2.4.1'
1717
hooks:
@@ -28,7 +28,7 @@ repos:
2828
additional_dependencies:
2929
- flake8-docstrings==1.6.0
3030
- pydocstyle==6.1.1
31-
files: ^(async_upnp_client|tests)/.+\.py$
31+
files: ^(didl_lite|tests)/.+\.py$
3232
- repo: https://github.com/PyCQA/isort
3333
rev: '7.0.0'
3434
hooks:
@@ -42,5 +42,5 @@ repos:
4242
args: [--ignore-missing-imports]
4343
additional_dependencies:
4444
- aiohttp>=3.7.4
45-
- pytest~=6.2.4
46-
files: ^(async_upnp_client|tests)/.+\.py$
45+
- pytest~=9.0.2
46+
files: ^(didl_lite|tests)/.+\.py$

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dynamic = ["version"]
3434

3535
[project.optional-dependencies]
3636
test = [
37-
"pytest>=7.4.3,<8.5.0",
37+
"pytest~=9.0.2",
3838
]
3939

4040
[tool.setuptools]

tox.ini

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,9 @@ python =
1313
commands = py.test --cov=didl_lite --cov-report=term --cov-report=xml:coverage-{env_name}.xml {posargs}
1414
ignore_errors = True
1515
deps =
16-
pytest == 7.4.3
17-
pytest-asyncio ~= 0.23.2
16+
pytest == 9.0.2
1817
pytest-cov ~= 4.1.0
1918
coverage ~= 7.3.3
20-
asyncmock ~= 0.4.2
2119

2220
[testenv:flake8]
2321
basepython = python3
@@ -34,7 +32,7 @@ basepython = python3
3432
ignore_errors = True
3533
deps =
3634
pylint ~= 3.0.3
37-
pytest == 7.4.3
35+
pytest == 9.0.2
3836
commands = pylint didl_lite tests
3937

4038
[testenv:codespell]
@@ -49,7 +47,7 @@ basepython = python3
4947
ignore_errors = True
5048
deps =
5149
mypy ~= 1.7.1
52-
pytest == 7.4.3
50+
pytest == 9.0.2
5351
commands = mypy --ignore-missing-imports didl_lite tests
5452

5553
[testenv:black]

0 commit comments

Comments
 (0)