-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Readline comes with UNIX, pyreadline3 now installs on Windows
- Loading branch information
1 parent
cca3a5b
commit e7d56f9
Showing
2 changed files
with
16 additions
and
7 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "open-interpreter" | |
packages = [ | ||
{include = "interpreter"}, | ||
] | ||
version = "0.0.292" | ||
version = "0.0.293" | ||
description = "Ask GPT-4 to run code locally." | ||
authors = ["Killian Lucas <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -19,14 +19,12 @@ tokentrim = "^0.1.2" | |
appdirs = "^1.4.4" | ||
six = "^1.16.0" | ||
|
||
# On non-windows systems, you can just `import readline`. | ||
# On windows, `pyreadline3` replaces that, so you can also just `import readline`. | ||
[tool.poetry.dependencies.pyreadline3] | ||
version = "*" | ||
version = "^3.4.1" | ||
markers = "sys_platform == 'win32'" | ||
|
||
[tool.poetry.dependencies.readline] | ||
version = "*" | ||
markers = "sys_platform != 'win32'" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^7.4.0" | ||
|
||
|