From beb08ea559ead63f8bf210a7ddfc56df6a89a117 Mon Sep 17 00:00:00 2001 From: Remy Date: Tue, 3 Oct 2023 20:49:08 -0400 Subject: [PATCH] fix: remove pyro-ppl from direct deps to prevent early installation of torch; print torch file info --- setup.cfg | 1 - tox.ini | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index d8c6edfe..b32b1c9c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -42,7 +42,6 @@ install_requires = opencv-python openpyxl pandas - pyro-ppl requests scanpy scikit-learn diff --git a/tox.ini b/tox.ini index bafddc32..1eb84a31 100644 --- a/tox.ini +++ b/tox.ini @@ -57,7 +57,7 @@ commands = # Check installation python --version - python -c "import torch; print(f'Successfully installed pytorch {torch.__version__}')" + python -c "import torch; print(f'Successfully installed pytorch {torch.__version__}\n{torch.__file__}')" python -c "import torch_geometric, torch_geometric.nn; print(f'Successfully installed pyg {torch_geometric.__version__}')" python -c "import dgl; print(f'Successfully installed dgl {dgl.__version__}')" python -c "import dance; print(f'Successfully installed dance {dance.__version__}')"