From 637e7bcf13f80cfba3421d6d108840254f3aad37 Mon Sep 17 00:00:00 2001 From: Christo Goosen Date: Wed, 9 Oct 2024 11:41:17 +0200 Subject: [PATCH] Fix version of httpx that fixes this bug: https://github.com/encode/httpx/discussions/3287 --- googletrans/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/googletrans/__init__.py b/googletrans/__init__.py index 79538f0..1ceb469 100644 --- a/googletrans/__init__.py +++ b/googletrans/__init__.py @@ -1,6 +1,6 @@ """Free Google Translate API for Python. Translates totally free of charge.""" __all__ = 'Translator', -__version__ = '3.3.0' +__version__ = '3.4.0' from googletrans.client import Translator diff --git a/setup.py b/setup.py index 7c1175a..3168c93 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ def install(): packages=find_packages(exclude=['docs', 'tests']), keywords='google translate translator', install_requires=[ - 'httpx[http2]>=0.23,<0.27.2', + 'httpx[http2]>=0.23,<0.27.3', ], python_requires= '>=3.6', tests_require=[