Skip to content

Commit dea70f5

Browse files
fix: propper python 3.11 support
1 parent 1e33e25 commit dea70f5

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
strategy:
100100
matrix:
101101
os: [ ubuntu-latest ]
102-
pyver: ["3.7", "3.8", "3.9", "3.10", "pypy-3.8", "pypy-3.7" ]
102+
pyver: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8", "pypy-3.7" ]
103103
redisstack: [ "latest" ]
104104
fail-fast: false
105105
services:

poetry.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ classifiers = [
1717
"Operating System :: OS Independent",
1818
"Topic :: Database",
1919
'License :: OSI Approved :: BSD License',
20-
'Programming Language :: Python :: 3.10',
2120
'Programming Language :: Python :: 3.7',
2221
'Programming Language :: Python :: 3.8',
2322
'Programming Language :: Python :: 3.9',
23+
'Programming Language :: Python :: 3.10',
24+
'Programming Language :: Python :: 3.11',
2425
'Programming Language :: Python',
2526
]
2627
include=[
@@ -34,7 +35,7 @@ include=[
3435
"Issue tracker" = "https://github.com/redis/redis-om-python/issues"
3536

3637
[tool.poetry.dependencies]
37-
python = "^3.7,<=3.11"
38+
python = ">=3.7,<3.12"
3839
redis = ">=3.5.3,<5.0.0"
3940
aioredis = "^2.0.0"
4041
pydantic = "^1.10.2"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
skipsdist = true
3-
envlist = py37, py38, py39, py310
3+
envlist = py37, py38, py39, py310 py311
44

55
[testenv]
66
whitelist_externals = poetry

0 commit comments

Comments
 (0)