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 <anton.osika@gmail.com>
This commit is contained in:
sweep-ai[bot]
2023-06-25 16:21:13 +02:00
committed by GitHub
parent 7f16abecb3
commit ec5dfecba0

View File

@@ -9,13 +9,14 @@ readme = "README.md"
requires-python = ">=3" requires-python = ">=3"
dependencies = [ dependencies = [
'black == 23.3.0', 'black == 23.3.0',
'click >= 8.0.0',
'mypy == 1.3.0', 'mypy == 1.3.0',
'openai == 0.27.8', 'openai == 0.27.8',
'pre-commit == 3.3.3', 'pre-commit == 3.3.3',
'pytest == 7.3.1', 'pytest == 7.3.1',
'ruff == 0.0.272', 'ruff == 0.0.272',
'termcolor==2.3.0', 'termcolor==2.3.0',
'typer == 0.9.0', 'typer >= 0.3.2',
'rudder-sdk-python == 2.0.2', 'rudder-sdk-python == 2.0.2',
'dataclasses-json == 0.5.7', 'dataclasses-json == 0.5.7',
] ]
@@ -26,7 +27,6 @@ gpt-engineer = 'gpt_engineer.main:app'
[tool.setuptools] [tool.setuptools]
packages = ["gpt_engineer"] packages = ["gpt_engineer"]
# https://beta.ruff.rs/docs/configuration/#using-rufftoml
[tool.ruff] [tool.ruff]
select = ["F", "E", "W", "I001"] select = ["F", "E", "W", "I001"]
line-length = 90 line-length = 90
@@ -55,7 +55,6 @@ exclude = [
"Homepage" = "https://github.com/AntonOsika/gpt-engineer" "Homepage" = "https://github.com/AntonOsika/gpt-engineer"
"Bug Tracker" = "https://github.com/AntonOsika/gpt-engineer/issues" "Bug Tracker" = "https://github.com/AntonOsika/gpt-engineer/issues"
[tool.ruff.isort] [tool.ruff.isort]
known-first-party = [] known-first-party = []
known-third-party = [] known-third-party = []
@@ -70,7 +69,6 @@ combine-as-imports = true
split-on-trailing-comma = false split-on-trailing-comma = false
lines-between-types = 1 lines-between-types = 1
# https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html
[tool.black] [tool.black]
line-length = 90 line-length = 90
target-version = ["py311"] target-version = ["py311"]