diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-20 05:58:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-20 05:58:27 +0000 |
commit | e67de01f39ed7cc752e4e209d82f431872cd0d06 (patch) | |
tree | 229f014c0b63e4831f8ea9e2d345ddf26d50bd3d /pyproject.toml | |
parent | Adding upstream version 1.14.1. (diff) | |
download | iredis-upstream.tar.xz iredis-upstream.zip |
Adding upstream version 1.15.0.upstream/1.15.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | pyproject.toml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml index bc2e5d4..38c3e8e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "iredis" -version = "1.14.1" +version = "1.15.0" description = "Terminal client for Redis with auto-completion and syntax highlighting." authors = ["laixintao <laixintao1995@163.com>"] readme = 'README.md' @@ -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", @@ -36,11 +36,11 @@ Pygments = "^2" mistune = "^3.0" configobj = "^5.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 = "^23.0" redis = "^5.0.0" +python-dateutil = "^2.8.2" [tool.poetry.dev-dependencies] pytest = "^7.2" @@ -49,6 +49,9 @@ pexpect = "^4.7" [tool.poetry.scripts] iredis = 'iredis.entry:main' +[tool.poetry.group.dev.dependencies] +freezegun = "^1.4.0" + [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" |