Skip to content

Commit

Permalink
Merge pull request #246 from Toloka/restrict-tenacity-version
Browse files Browse the repository at this point in the history
restrict tenacity version
  • Loading branch information
alexdrydew authored Jul 2, 2024
2 parents d15a28f + 59eebd6 commit e5e0450
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.2.3
-------------------
Changes:
* Introduced upper bound on `tenacity` version to avoid breaking retrying mechanism.

1.2.2
-------------------
Changes:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def get_ipython_with_version():
'filelock >= 3.2.0',
'requests',
'httpx',
'tenacity >= 7.0.0', # https://github.com/jd/tenacity/issues/139
'tenacity >= 7.0, < 8.3', # https://github.com/jd/tenacity/issues/139
'typing-extensions',
'urllib3 >= 1.26.0',
'simplejson',
Expand Down
2 changes: 1 addition & 1 deletion src/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__title__ = 'toloka-kit'
__version__ = '1.2.2'
__version__ = '1.2.3'
__license__ = 'Apache 2.0'
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ deps =
filelock >= 3.2.0
flake8
mypy
pytest
# https://github.com/TvoroG/pytest-lazy-fixture/issues/65
pytest < 8.0
pytest-asyncio
pytest-lazy-fixture
pytest-timeout
Expand Down

0 comments on commit e5e0450

Please sign in to comment.