Skip to content

Commit

Permalink
fix(agent/release): Add gitpython as a direct dependency
Browse files Browse the repository at this point in the history
gitpython was installed as an indirect dependency via agbenchmark. The release builds don't contain agbenchmark and thus also lack the gitpython package, which breaks the image.
  • Loading branch information
Pwuts committed Dec 14, 2023
1 parent 65151cd commit af3ebdf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
10 changes: 5 additions & 5 deletions autogpts/autogpt/poetry.lock

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

6 changes: 1 addition & 5 deletions autogpts/autogpt/pyproject.toml
Expand Up @@ -36,6 +36,7 @@ duckduckgo-search = "^4.0.0"
en-core-web-sm = {url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.5.0/en_core_web_sm-3.5.0-py3-none-any.whl"}
fastapi = "*"
ftfy = "^6.1.1"
gitpython = "^3.1.32"
google-api-python-client = "*"
gTTS = "^2.3.1"
hypercorn = "^0.14.4"
Expand Down Expand Up @@ -140,16 +141,11 @@ extend_skip = [
follow_imports = 'skip'
check_untyped_defs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
files = [
'autogpt/**/*.py',
'tests/**/*.py'
]

[[tool.mypy.overrides]]
module = 'tests.*'
disallow_untyped_defs = false

[[tool.mypy.overrides]]
module = [
'requests.*',
Expand Down

0 comments on commit af3ebdf

Please sign in to comment.