Skip to content

Commit

Permalink
Upgrade requirements (#712)
Browse files Browse the repository at this point in the history
  • Loading branch information
brainix committed Nov 5, 2023
1 parent 29113db commit b80a595
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions pottery/bloom.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,8 @@ def contains_many(self, *values: JSONTypes) -> Generator[bool, None, None]:
Please note that this method *may* produce false positives, but *never*
produces false negatives. This means that if .contains_many() yields
all Trues, then you *may* have inserted the elements into the Bloom
filter. But if .contains_many() yields one False, then you *must not*
have inserted the corresponding element.
filter. But if .contains_many() yields one False or stops yielding,
then you *must not* have inserted the corresponding element.
'''
with self._watch() as pipeline:
pipeline.multi() # Available since Redis 1.2.0
Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
async-timeout==4.0.3
bandit==1.7.5
bleach==6.0.0
bleach==6.1.0
certifi==2023.7.22
cffi==1.16.0
charset-normalizer==3.3.0
Expand All @@ -25,7 +25,7 @@ mccabe==0.7.0
mdurl==0.1.2
mmh3==4.0.1
more-itertools==10.1.0
mypy==1.5.1
mypy==1.6.1
mypy-extensions==1.0.0
nh3==0.2.14
packaging==21.3
Expand All @@ -37,7 +37,7 @@ pycparser==2.21
pyflakes==3.1.0
Pygments==2.16.1
pyparsing==3.1.1
pytest==7.4.2
pytest==7.4.3
pytest-asyncio==0.21.1
pytest-cov==4.1.0
PyYAML==6.0.1
Expand All @@ -56,9 +56,9 @@ stevedore==5.1.0
tomli==2.0.1
twine==4.0.2
types-pyOpenSSL==23.2.0.2
types-redis==4.6.0.7
types-redis==4.6.0.9
typing_extensions==4.8.0
urllib3==2.0.6
uvloop==0.17.0
urllib3==2.0.7
uvloop==0.19.0
webencodings==0.5.1
zipp==3.17.0

0 comments on commit b80a595

Please sign in to comment.