Skip to content

Commit

Permalink
fix: limit python version until 3.12 fix found
Browse files Browse the repository at this point in the history
  • Loading branch information
meeas committed Apr 20, 2024
1 parent 5fb9ba9 commit 8af331c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ctui"
version = "0.7.7"
version = "0.7.8"
description = "The ctui library is similar to Python's built in cmd library, but with a curses-like user interface"
authors = ["Justin Searle <justin@controlthings.io>"]
license = "LGPL"
Expand All @@ -22,7 +22,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.8"
python = ">= 3.8, < 3.12"
prompt-toolkit = "^3.0.36"
Pygments = "^2.14.0"
tabulate = "^0.8.0"
Expand Down

0 comments on commit 8af331c

Please sign in to comment.