From ec5dfecba0e317c4de6c937d588e22a5d70d750b Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Sun, 25 Jun 2023 16:21:13 +0200 Subject: [PATCH] Resolve Dependency Conflicts for Google Colab (#392) * Update pyproject.toml * Update pyproject.toml --------- Co-authored-by: sweep-ai[bot] <128439645+sweep-ai[bot]@users.noreply.github.com> Co-authored-by: Anton Osika --- pyproject.toml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3023883..010649e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,13 +9,14 @@ readme = "README.md" requires-python = ">=3" dependencies = [ 'black == 23.3.0', + 'click >= 8.0.0', 'mypy == 1.3.0', 'openai == 0.27.8', 'pre-commit == 3.3.3', 'pytest == 7.3.1', 'ruff == 0.0.272', 'termcolor==2.3.0', - 'typer == 0.9.0', + 'typer >= 0.3.2', 'rudder-sdk-python == 2.0.2', 'dataclasses-json == 0.5.7', ] @@ -26,7 +27,6 @@ gpt-engineer = 'gpt_engineer.main:app' [tool.setuptools] packages = ["gpt_engineer"] -# https://beta.ruff.rs/docs/configuration/#using-rufftoml [tool.ruff] select = ["F", "E", "W", "I001"] line-length = 90 @@ -55,7 +55,6 @@ exclude = [ "Homepage" = "https://github.com/AntonOsika/gpt-engineer" "Bug Tracker" = "https://github.com/AntonOsika/gpt-engineer/issues" - [tool.ruff.isort] known-first-party = [] known-third-party = [] @@ -70,7 +69,6 @@ combine-as-imports = true split-on-trailing-comma = false lines-between-types = 1 -# https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html [tool.black] line-length = 90 target-version = ["py311"]