Skip to content

Commit

Permalink
Bump the pip-packages group with 4 updates (#255)
Browse files Browse the repository at this point in the history
* Bump the pip-packages group with 4 updates

Updates the requirements on [flake8](https://github.com/pycqa/flake8), [pyright](https://github.com/RobertCraigie/pyright-python), [prometheus-client](https://github.com/prometheus/client_python) and [werkzeug](https://github.com/pallets/werkzeug) to permit the latest version.

Updates `flake8` from 6.1.0 to 7.0.0
- [Commits](PyCQA/flake8@6.1.0...7.0.0)

Updates `pyright` from 1.1.325 to 1.1.345
- [Release notes](https://github.com/RobertCraigie/pyright-python/releases)
- [Commits](RobertCraigie/pyright-python@v1.1.325...v1.1.345)

Updates `prometheus-client` from 0.17.1 to 0.19.0
- [Release notes](https://github.com/prometheus/client_python/releases)
- [Commits](prometheus/client_python@v0.17.1...v0.19.0)

Updates `werkzeug` to 2.3.8
- [Release notes](https://github.com/pallets/werkzeug/releases)
- [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst)
- [Commits](pallets/werkzeug@0.1...2.3.8)

---
updated-dependencies:
- dependency-name: flake8
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip-packages
- dependency-name: pyright
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-packages
- dependency-name: prometheus-client
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-packages
- dependency-name: werkzeug
  dependency-type: direct:development
  dependency-group: pip-packages
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix typing

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Iurii Pliner <[email protected]>
  • Loading branch information
dependabot[bot] and Pliner authored Jan 13, 2024
1 parent da6c8c3 commit af4df1c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions aio_request/circuit_breaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ def __init__(

async def execute(
self,
*,
scope: TScope,
operation: collections.abc.Callable[[], collections.abc.Awaitable[TResult]],
fallback: TResult,
Expand Down Expand Up @@ -237,6 +238,7 @@ class NoopCircuitBreaker(CircuitBreaker[TScope, TResult]):

async def execute(
self,
*,
scope: TScope,
operation: collections.abc.Callable[[], collections.abc.Awaitable[TResult]],
fallback: TResult,
Expand Down
2 changes: 1 addition & 1 deletion aio_request/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def __init__(

async def execute(
self,
_: NextModuleFunc,
next: NextModuleFunc,
*,
endpoint: yarl.URL,
request: Request,
Expand Down
8 changes: 4 additions & 4 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
flake8==6.1.0
flake8==7.0.0
isort==5.13.2
black==23.12.1
pyright==1.1.325
pyright==1.1.345
pytest==7.4.4
pytest-aiohttp==1.0.5
pytest-httpbin==2.0.0
Expand All @@ -10,9 +10,9 @@ async-timeout==4.0.2;python_version<"3.11"
yarl==1.9.4
multidict==6.0.4
httpx==0.26.0
prometheus-client==0.17.1
prometheus-client==0.19.0
opentelemetry-api>=1.19
opentelemetry-semantic-conventions
opentelemetry-exporter-prometheus
opentelemetry-instrumentation-aiohttp-client
werkzeug<=2.3.7
werkzeug<=2.3.8

0 comments on commit af4df1c

Please sign in to comment.