Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,9 @@ jobs:
- name: Install self
run: python -m pip install -e .
- name: Run benchmarks
uses: CodSpeedHQ/action@v3
uses: CodSpeedHQ/action@v4
with:
mode: instrumentation
token: ${{ secrets.CODSPEED_TOKEN }}
run: python -Im pytest --no-cov --numprocesses=0 -vvvvv --codspeed

Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ repos:
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: '25.1.0'
rev: '25.9.0'
hooks:
- id: black
language_version: python3 # Should be a command that runs python
Expand Down
5 changes: 3 additions & 2 deletions aiohttp/client_reqrep.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
netrc_from_env,
parse_mimetype,
reify,
sentinel,
set_exception,
set_result,
)
Expand Down Expand Up @@ -137,14 +138,14 @@ def __new__(
url: URL,
method: str,
headers: "CIMultiDictProxy[str]",
real_url: URL = _SENTINEL, # type: ignore[assignment]
real_url: Union[URL, _SENTINEL] = sentinel,
) -> "RequestInfo":
"""Create a new RequestInfo instance.

For backwards compatibility, the real_url parameter is optional.
"""
return tuple.__new__(
cls, (url, method, headers, url if real_url is _SENTINEL else real_url)
cls, (url, method, headers, url if real_url is sentinel else real_url)
)


Expand Down
6 changes: 3 additions & 3 deletions requirements/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ coverage==7.10.7
# via
# -r requirements/test-common.in
# pytest-cov
cryptography==46.0.1
cryptography==46.0.2
# via
# pyjwt
# trustme
Expand Down Expand Up @@ -116,7 +116,7 @@ multidict==6.6.4
# -r requirements/multidict.in
# -r requirements/runtime-deps.in
# yarl
mypy==1.17.1 ; implementation_name == "cpython"
mypy==1.18.2 ; implementation_name == "cpython"
# via
# -r requirements/lint.in
# -r requirements/test-common.in
Expand Down Expand Up @@ -275,7 +275,7 @@ typing-extensions==4.15.0
# python-on-whales
# typing-inspection
# virtualenv
typing-inspection==0.4.1
typing-inspection==0.4.2
# via pydantic
uritemplate==4.2.0
# via gidgethub
Expand Down
6 changes: 3 additions & 3 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ coverage==7.10.7
# via
# -r requirements/test-common.in
# pytest-cov
cryptography==46.0.1
cryptography==46.0.2
# via
# pyjwt
# trustme
Expand Down Expand Up @@ -113,7 +113,7 @@ multidict==6.6.4
# via
# -r requirements/runtime-deps.in
# yarl
mypy==1.17.1 ; implementation_name == "cpython"
mypy==1.18.2 ; implementation_name == "cpython"
# via
# -r requirements/lint.in
# -r requirements/test-common.in
Expand Down Expand Up @@ -266,7 +266,7 @@ typing-extensions==4.15.0
# python-on-whales
# typing-inspection
# virtualenv
typing-inspection==0.4.1
typing-inspection==0.4.2
# via pydantic
uritemplate==4.2.0
# via gidgethub
Expand Down
6 changes: 3 additions & 3 deletions requirements/lint.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cfgv==3.4.0
# via pre-commit
click==8.1.8
# via slotscheck
cryptography==46.0.1
cryptography==46.0.2
# via trustme
distlib==0.4.0
# via virtualenv
Expand All @@ -45,7 +45,7 @@ markdown-it-py==3.0.0
# via rich
mdurl==0.1.2
# via markdown-it-py
mypy==1.17.1 ; implementation_name == "cpython"
mypy==1.18.2 ; implementation_name == "cpython"
# via -r requirements/lint.in
mypy-extensions==1.1.0
# via mypy
Expand Down Expand Up @@ -113,7 +113,7 @@ typing-extensions==4.15.0
# python-on-whales
# typing-inspection
# virtualenv
typing-inspection==0.4.1
typing-inspection==0.4.2
# via pydantic
uvloop==0.21.0 ; platform_system != "Windows"
# via -r requirements/lint.in
Expand Down
6 changes: 3 additions & 3 deletions requirements/test-common.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ coverage==7.10.7
# via
# -r requirements/test-common.in
# pytest-cov
cryptography==46.0.1
cryptography==46.0.2
# via trustme
exceptiongroup==1.3.0
# via pytest
Expand All @@ -38,7 +38,7 @@ markdown-it-py==4.0.0
# via rich
mdurl==0.1.2
# via markdown-it-py
mypy==1.18.1 ; implementation_name == "cpython"
mypy==1.18.2 ; implementation_name == "cpython"
# via -r requirements/test-common.in
mypy-extensions==1.1.0
# via mypy
Expand Down Expand Up @@ -105,7 +105,7 @@ typing-extensions==4.15.0
# pydantic-core
# python-on-whales
# typing-inspection
typing-inspection==0.4.1
typing-inspection==0.4.2
# via pydantic
wait-for-it==2.3.0
# via -r requirements/test-common.in
Expand Down
6 changes: 3 additions & 3 deletions requirements/test-ft.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ coverage==7.10.7
# via
# -r requirements/test-common.in
# pytest-cov
cryptography==46.0.1
cryptography==46.0.2
# via trustme
exceptiongroup==1.3.0
# via pytest
Expand Down Expand Up @@ -61,7 +61,7 @@ multidict==6.6.4
# via
# -r requirements/runtime-deps.in
# yarl
mypy==1.18.1 ; implementation_name == "cpython"
mypy==1.18.2 ; implementation_name == "cpython"
# via -r requirements/test-common.in
mypy-extensions==1.1.0
# via mypy
Expand Down Expand Up @@ -138,7 +138,7 @@ typing-extensions==4.15.0
# pydantic-core
# python-on-whales
# typing-inspection
typing-inspection==0.4.1
typing-inspection==0.4.2
# via pydantic
wait-for-it==2.3.0
# via -r requirements/test-common.in
Expand Down
6 changes: 3 additions & 3 deletions requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ coverage==7.10.7
# via
# -r requirements/test-common.in
# pytest-cov
cryptography==46.0.1
cryptography==46.0.2
# via trustme
exceptiongroup==1.3.0
# via pytest
Expand Down Expand Up @@ -61,7 +61,7 @@ multidict==6.6.4
# via
# -r requirements/runtime-deps.in
# yarl
mypy==1.17.1 ; implementation_name == "cpython"
mypy==1.18.2 ; implementation_name == "cpython"
# via -r requirements/test-common.in
mypy-extensions==1.1.0
# via mypy
Expand Down Expand Up @@ -138,7 +138,7 @@ typing-extensions==4.15.0
# pydantic-core
# python-on-whales
# typing-inspection
typing-inspection==0.4.1
typing-inspection==0.4.2
# via pydantic
uvloop==0.21.0 ; platform_system != "Windows" and implementation_name == "cpython"
# via -r requirements/base.in
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ classifiers =
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.14

Topic :: Internet :: WWW/HTTP

Expand Down
Loading