Skip to content

Commit

Permalink
adding child deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mdfleury-wbd committed May 15, 2024
1 parent 0c0a283 commit abc1693
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion backend/lambdas/api/repo/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@
url=("https://github.com/warnermedia/artemis/backend/lambdas/api/repo"),
packages=find_packages(),
setup_requires=["pytest-runner"],
install_requires=["requests", "urllib3<2", "graphql_query"], # https://github.com/boto/botocore/issues/2926
install_requires=[
"requests",
"urllib3<2", # https://github.com/boto/botocore/issues/2926
"graphql_query",
"pydantic_core",
],
tests_require=["pytest"],
classifiers=[
"Programming Language :: Python :: 3.9",
Expand Down
2 changes: 1 addition & 1 deletion backend/lambdas/scheduled/update_github_org_users/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
url=("https://github.com/warnermedia/artemis/backend/lambdas/scheduled/update_github_org_users"),
packages=find_packages(),
setup_requires=["pytest-runner"],
install_requires=["graphql_query"],
install_requires=["graphql_query", "pydantic_core"],
tests_require=["pytest"],
classifiers=[
"Programming Language :: Python :: 3.9",
Expand Down

0 comments on commit abc1693

Please sign in to comment.