Skip to content

Commit 038f8ef

Browse files
Bump the python-packages group across 1 directory with 9 updates (#2538)
* Bump the python-packages group across 1 directory with 9 updates Bumps the python-packages group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [websockets](https://github.com/python-websockets/websockets) | `13.1` | `14.1` | | [twine](https://github.com/pypa/twine) | `5.1.1` | `6.0.1` | | [ruff](https://github.com/astral-sh/ruff) | `0.7.1` | `0.8.3` | | [pytest](https://github.com/pytest-dev/pytest) | `8.3.3` | `8.3.4` | | [trustme](https://github.com/python-trio/trustme) | `1.1.0` | `1.2.0` | | [cryptography](https://github.com/pyca/cryptography) | `43.0.3` | `44.0.0` | | [coverage](https://github.com/nedbat/coveragepy) | `7.6.4` | `7.6.9` | | [httpx](https://github.com/encode/httpx) | `0.27.2` | `0.28.1` | | [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.43` | `9.5.48` | Updates `websockets` from 13.1 to 14.1 - [Release notes](https://github.com/python-websockets/websockets/releases) - [Commits](python-websockets/websockets@13.1...14.1) Updates `twine` from 5.1.1 to 6.0.1 - [Release notes](https://github.com/pypa/twine/releases) - [Changelog](https://github.com/pypa/twine/blob/main/docs/changelog.rst) - [Commits](pypa/twine@v5.1.1...6.0.1) Updates `ruff` from 0.7.1 to 0.8.3 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.7.1...0.8.3) Updates `pytest` from 8.3.3 to 8.3.4 - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](pytest-dev/pytest@8.3.3...8.3.4) Updates `trustme` from 1.1.0 to 1.2.0 - [Release notes](https://github.com/python-trio/trustme/releases) - [Commits](python-trio/trustme@v1.1.0...v1.2.0) Updates `cryptography` from 43.0.3 to 44.0.0 - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) - [Commits](pyca/cryptography@43.0.3...44.0.0) Updates `coverage` from 7.6.4 to 7.6.9 - [Release notes](https://github.com/nedbat/coveragepy/releases) - [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst) - [Commits](nedbat/coveragepy@7.6.4...7.6.9) Updates `httpx` from 0.27.2 to 0.28.1 - [Release notes](https://github.com/encode/httpx/releases) - [Changelog](https://github.com/encode/httpx/blob/master/CHANGELOG.md) - [Commits](encode/httpx@0.27.2...0.28.1) Updates `mkdocs-material` from 9.5.43 to 9.5.48 - [Release notes](https://github.com/squidfunk/mkdocs-material/releases) - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG) - [Commits](squidfunk/mkdocs-material@9.5.43...9.5.48) --- updated-dependencies: - dependency-name: websockets dependency-type: direct:production update-type: version-update:semver-major dependency-group: python-packages - dependency-name: twine dependency-type: direct:production update-type: version-update:semver-major dependency-group: python-packages - dependency-name: ruff dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-packages - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-packages - dependency-name: trustme dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-packages - dependency-name: cryptography dependency-type: direct:production update-type: version-update:semver-major dependency-group: python-packages - dependency-name: coverage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-packages - dependency-name: httpx dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-packages - dependency-name: mkdocs-material dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-packages ... Signed-off-by: dependabot[bot] <[email protected]> * Add websockets old version to the requiremnts * trustme * fix issue with httpx * continue with websockets old version --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marcelo Trylesinski <[email protected]>
1 parent 3aa1d01 commit 038f8ef

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

requirements.txt

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,23 @@ websockets==13.1
1111

1212
# Packaging
1313
build==1.2.2.post1
14-
twine==5.1.1
14+
twine==6.0.1
1515

1616
# Testing
17-
ruff==0.7.1
18-
pytest==8.3.3
17+
ruff==0.8.3
18+
pytest==8.3.4
1919
pytest-mock==3.14.0
2020
mypy==1.13.0
2121
types-click==7.1.8
2222
types-pyyaml==6.0.12.20240917
23-
trustme==1.1.0
24-
cryptography==43.0.3
23+
trustme==1.1.0; python_version < '3.9'
24+
trustme==1.2.0; python_version >= '3.9'
25+
cryptography==44.0.0
2526
coverage==7.6.1; python_version < '3.9'
26-
coverage==7.6.4; python_version >= '3.9'
27+
coverage==7.6.9; python_version >= '3.9'
2728
coverage-conditional-plugin==0.9.0
28-
httpx==0.27.2
29+
httpx==0.28.1
2930

3031
# Documentation
3132
mkdocs==1.6.1
32-
mkdocs-material==9.5.43
33+
mkdocs-material==9.5.48

tests/middleware/test_wsgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ async def test_wsgi_post(wsgi_middleware: Callable) -> None:
7272
async with httpx.AsyncClient(transport=transport, base_url="http://testserver") as client:
7373
response = await client.post("/", json={"example": 123})
7474
assert response.status_code == 200
75-
assert response.text == '{"example": 123}'
75+
assert response.text == '{"example":123}'
7676

7777

7878
@pytest.mark.anyio

0 commit comments

Comments
 (0)