1
0
Fork 0

Adding upstream version 1.14.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-09 17:21:37 +01:00
parent 9e8d2d0c6a
commit 1ff56e1f8f
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
19 changed files with 152 additions and 114 deletions

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "iredis"
version = "1.13.2"
version = "1.14.0"
description = "Terminal client for Redis with auto-completion and syntax highlighting."
authors = ["laixintao <laixintao1995@163.com>"]
readme = 'README.md'
@ -19,6 +19,8 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
# "Programming Language :: Python :: 3.12",
"Topic :: Database",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
@ -26,7 +28,6 @@ classifiers = [
packages = [
{ include = "iredis" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
@ -35,12 +36,12 @@ prompt_toolkit = "^3"
Pygments = "^2"
mistune = "^3.0"
configobj = "^5.0"
click = "^7.0"
pendulum = "^2.0"
click = "^8.0"
pendulum = "^2.1.0"
# wcwidth 0.2.x uses pkg_resources which is not supported by PyOxidizer
wcwidth = "0.1.9"
packaging = "^21.3"
redis = "^4.5.3"
packaging = "^23.0"
redis = "^5.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7.2"