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

Upgrade requirements #746

Merged
merged 3 commits into from
Jul 25, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pottery/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def __init__(self,
init_cache = functools.partial(
RedisDict,
redis=redis_client,
key=redis_key,
key=redis_key, # type: ignore
)
self._cache = self.__retry(init_cache)
self._misses = set()
Expand Down
22 changes: 11 additions & 11 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ certifi==2024.7.4
cffi==1.16.0
charset-normalizer==3.3.2
click==8.1.7
coverage==7.5.4
cryptography==42.0.8
coverage==7.6.0
cryptography==43.0.0
docutils==0.20.1
dparse==0.6.4b0
filelock==3.12.4
flake8==7.1.0
hiredis==2.3.2
hiredis==3.0.0
idna==3.7
importlib_metadata==8.0.0
importlib_metadata==8.2.0
iniconfig==2.0.0
isort==5.13.2
jaraco.classes==3.4.0
Expand All @@ -28,9 +28,9 @@ mccabe==0.7.0
mdurl==0.1.2
mmh3==4.1.0
more-itertools==10.3.0
mypy==1.10.1
mypy==1.11.0
mypy-extensions==1.0.0
nh3==0.2.17
nh3==0.2.18
packaging==24.1
pbr==6.0.0
pkginfo==1.10.0
Expand All @@ -41,8 +41,8 @@ pydantic==2.8.2
pydantic_core==2.20.1
pyflakes==3.2.0
Pygments==2.18.0
pytest==8.2.2
pytest-asyncio==0.23.7
pytest==8.3.1
pytest-asyncio==0.23.8
pytest-cov==5.0.0
PyYAML==6.0.1
readme_renderer==43.0
Expand All @@ -55,15 +55,15 @@ ruamel.yaml==0.18.6
ruamel.yaml.clib==0.2.8
safety==3.2.4
safety-schemas==0.0.2
setuptools==70.2.0
setuptools==71.1.0
shellingham==1.5.4
stevedore==5.2.0
twine==5.1.1
typer==0.12.3
types-cffi==1.16.0.20240331
types-pyOpenSSL==24.1.0.20240425
types-pyOpenSSL==24.1.0.20240722
types-redis==4.6.0.20240425
types-setuptools==70.2.0.20240704
types-setuptools==71.1.0.20240724
typing_extensions==4.12.2
urllib3==2.2.2
uvloop==0.19.0
Expand Down
Loading