Skip to content

Commit

Permalink
adding in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhras01 committed May 30, 2024
1 parent 380243b commit 7b31e10
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
9 changes: 5 additions & 4 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ termcolor = ">=2.4.0,<3"
pydantic = ">=2.6.4,<3"
openai = ">=1.3.0"
rich = ">=13.7.1,<14"
importlib-metadata = ">=4.8.1,<5"
importlib-metadata = ">=4.8.1"
cloup = ">=3.0.0"
pyperclip = ">=1.8.2,<2"
simple-parsing = "*"
docker = "*"
gymnasium = "*"
simple-parsing = ">=0.1.5"
docker = ">=7.1.0"
gymnasium = ">=0.29.1"
pyyaml = ">=6.0.1"

[dev-packages]
black = ">=24.1.1"
Expand Down
1 change: 0 additions & 1 deletion examples/swe/try-swe.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

if __name__ == "__main__":
assert os.environ.get("GITHUB_ACCESS_TOKEN") is not None
assert os.environ.get("HARD_CODED_REPO_NAME") is not None
# load config from YAML file
task_config_path = script_dir / Path(CONFIG_FILE_PATH)
with open(task_config_path, 'r') as stream:
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,14 @@
"pydantic>=2.6.4,<3",
"openai>=1.3.0",
"rich>=13.7.1,<14",
"importlib-metadata>=4.8.1,<5",
"importlib-metadata>=4.8.1",
"pyperclip>=1.8.2,<2",
"jsonref>=1.1.0",
"inflection>=0.5.1",
"simple-parsing>=0.1.5",
"docker>=7.1.0",
"gymnasium>=0.29.1",
"pyyaml>=6.0.1",
],
include_package_data=True,
)

0 comments on commit 7b31e10

Please sign in to comment.