fix: proper python 3.11 support (#446)

* fix: propper python 3.11 support

* fix tox config

* wider python 3.x support

* Update ci.yml

Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com>
This commit is contained in:
Yaraslau Zhylko 2022-12-28 10:42:14 +03:00 committed by GitHub
parent 1e33e2513e
commit 7bc8b402d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 6 deletions

View file

@ -17,10 +17,11 @@ classifiers = [
"Operating System :: OS Independent",
"Topic :: Database",
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python',
]
include=[
@ -34,7 +35,7 @@ include=[
"Issue tracker" = "https://github.com/redis/redis-om-python/issues"
[tool.poetry.dependencies]
python = "^3.7,<=3.11"
python = ">=3.7,<4.0"
redis = ">=3.5.3,<5.0.0"
aioredis = "^2.0.0"
pydantic = "^1.10.2"