Skip to content

Commit

Permalink
Support Py3.12 (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
aamalev authored Oct 17, 2023
1 parent ede2a7a commit aef9f7a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]

[project.urls]
Expand All @@ -48,6 +49,7 @@ target-version = [
"py39",
"py310",
"py311",
"py312",
]

[tool.ruff]
Expand Down Expand Up @@ -87,3 +89,17 @@ fmt = [
"isort redis_rs tests",
"black redis_rs tests",
]
test = [
"check",
"cargo test",
"pytest",
]

[[tool.hatch.envs.all.matrix]]
python = [
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
]

0 comments on commit aef9f7a

Please sign in to comment.