Python 3.11

This commit is contained in:
Ivan Golikov 2022-12-17 09:37:41 +01:00
parent 846054922e
commit 8ee608364f
3 changed files with 5 additions and 6 deletions

View file

@ -3,7 +3,7 @@ repos:
rev: 22.3.0 rev: 22.3.0
hooks: hooks:
- id: black - id: black
language_version: python3.10 language_version: python3.11
- repo: https://github.com/pre-commit/pre-commit-hooks - repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0 rev: v4.3.0

View file

@ -14,7 +14,7 @@ Service is built with Python, FastAPI and is using Redis for data storage.
### Requirements ### Requirements
- Python 3.10+ - Python 3.11+
- Redis - Redis
- Python development libraries (optional, only needed for `hiredis` module installation) - Python development libraries (optional, only needed for `hiredis` module installation)

View file

@ -7,14 +7,13 @@ package_dir = = src
packages = find: packages = find:
install_requires = install_requires =
fastapi==0.78.0 fastapi==0.78.0
aioredis==2.0.1 redis[hiredis]==4.4.0
click==8.1.3 click==8.1.3
python_requires = >=3.10 python_requires = >=3.11
[options.extras_require] [options.extras_require]
hiredis =
hiredis==2.0.0
development = development =
uvicorn
pre-commit==2.19.0 pre-commit==2.19.0
[options.entry_points] [options.entry_points]