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:
parent
1e33e2513e
commit
7bc8b402d5
4 changed files with 8 additions and 6 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue