Skip to content

Commit

Permalink
Fix version of httpx that fixes this bug: encode/httpx#3287
Browse files Browse the repository at this point in the history
  • Loading branch information
c-goosen committed Oct 9, 2024
1 parent d1f359f commit 637e7bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion googletrans/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=[
Expand Down

0 comments on commit 637e7bc

Please sign in to comment.