Skip to content

Commit

Permalink
Fix botocore version pins to avoid them in base install
Browse files Browse the repository at this point in the history
  • Loading branch information
stancld committed May 15, 2024
1 parent cc76117 commit 40cd934
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 16 deletions.
30 changes: 16 additions & 14 deletions poetry.lock

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

6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,11 @@ tensorboard = { version = "^2.11.2", optional = true }
scikit-learn = { version = "^1.2.1", optional = true }
pytorch-lightning = { extras = ["extra"], version = "^1.8.3", optional = true }
timm = { version = "^0.6.11", optional = true }

[tool.poetry.group.baselines.dependencies]
# pin botocore otherwise poetry lock never finishes
botocore = { version = "~1.34.69", optional = true }
aiobotocore = { version = "~2.12.3" , optional = true}
botocore = { version = "^1.34.69", optional = true }
aiobotocore = { version = "^2.12.3" , optional = true }

[tool.poetry.extras]
interactive = ["jupyterlab", "ipywidgets", "plotly"]
Expand Down

0 comments on commit 40cd934

Please sign in to comment.