Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update httpx requirement from ~=0.22.0 to ~=0.23.0 #3069

Merged
merged 2 commits into from Jun 2, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Expand Up @@ -33,7 +33,7 @@ repos:
- --jobs=0

additional_dependencies:
- httpx~=0.22.0
- httpx~=0.23.0
- tornado~=6.1
- APScheduler~=3.9.1
- cachetools~=5.0.0
Expand All @@ -49,7 +49,7 @@ repos:
- types-pytz
- types-cryptography
- types-cachetools
- httpx~=0.22.0
- httpx~=0.23.0
- tornado~=6.1
- APScheduler~=3.9.1
- cachetools~=5.0.0
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -121,7 +121,7 @@ Dependencies & Their Versions
However, for some features using a 3rd party library is more sane than implementing the functionality again.
The dependencies are:

* `httpx ~= 0.22.0 <https://www.python-httpx.org>`_ for ``telegram.request.HTTPXRequest``, the default networking backend
* `httpx ~= 0.23.0 <https://www.python-httpx.org>`_ for ``telegram.request.HTTPXRequest``, the default networking backend
* `tornado~=6.1 <https://www.tornadoweb.org/en/stable/>`_ for ``telegram.ext.Updater.start_webhook``
* `cachetools~=5.0.0 <https://cachetools.readthedocs.io/en/latest/>`_ for ``telegram.ext.CallbackDataCache``
* `APScheduler~=3.9.1 <https://apscheduler.readthedocs.io/en/3.x/>`_ for ``telegram.ext.JobQueue``
Expand Down
2 changes: 1 addition & 1 deletion README_RAW.rst
Expand Up @@ -122,7 +122,7 @@ Dependencies & Their Versions
However, for some features using a 3rd party library is more sane than implementing the functionality again.
The dependencies are:

* `httpx ~= 0.22.0 <https://www.python-httpx.org>`_ for ``telegram.request.HTTPXRequest``, the default networking backend
* `httpx ~= 0.23.0 <https://www.python-httpx.org>`_ for ``telegram.request.HTTPXRequest``, the default networking backend

``python-telegram-bot`` is most useful when used along with additional libraries.
To minimize dependency conflicts, we try to be liberal in terms of version requirements on the dependencies.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -6,7 +6,7 @@
# versions and only increase the lower bound if necessary

# httpx has no stable release yet, so let's be cautious for now
httpx ~= 0.22.0
httpx ~= 0.23.0
# only telegram.ext: # Keep this line here; used in setup(-raw).py

# tornado is rather stable, but let's not allow the next mayor release without prior testing
Expand Down