Skip to content

Commit

Permalink
Merge pull request #483 from deronnax/add-python-3.12-support
Browse files Browse the repository at this point in the history
Add python 3.12 support
  • Loading branch information
laixintao committed Apr 15, 2024
2 parents 499769a + 4089dd3 commit 69dfcfe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-20.04"]
python: ["3.8", "3.9", "3.10", "3.11.1"]
python: ["3.8", "3.9", "3.10", "3.11.1", "3.12"]
redis: [5, 6, 7, 7.2]
runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion iredis/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def split_command_args(command):

command = command.strip()
for command_name in all_commands:
# for command that is paritaly input, like `command in`, we should
# for command that is partially input, like `command in`, we should
# match with `command info`, otherwise, `command in` will result in
# `command` with `args` is ('in') which is an invalid case.
normalized_input_command = " ".join(command.split()).upper()
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
# "Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
Expand Down

0 comments on commit 69dfcfe

Please sign in to comment.