Skip to content

Commit

Permalink
Lightning + Aim dependency fix in conda environment.yaml and setup.py. (
Browse files Browse the repository at this point in the history
  • Loading branch information
tesfaldet committed May 11, 2023
1 parent 8886a13 commit 467a974
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ channels:
dependencies:
- pytorch=2.*
- torchvision=0.*
- pytorch-lightning=2.*
- lightning=2.*
- torchmetrics=0.*
- hydra-core=1.*
- rich=13.*
Expand All @@ -35,6 +35,7 @@ dependencies:
# - neptune-client
# - mlflow
# - comet-ml
# - aim>=3.16.2 # no lower than 3.16.2, see https://github.com/aimhubio/aim/issues/2550

- pip>=23
- pip:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
author="",
author_email="",
url="https://github.com/user/project",
install_requires=["pytorch-lightning", "hydra-core"],
install_requires=["lightning", "hydra-core"],
packages=find_packages(),
# use this to customize global commands available in the terminal after installing the package
entry_points={
Expand Down

0 comments on commit 467a974

Please sign in to comment.