From 2ed0bfc7180ac6f02b36db82c48b82c45fe1879f Mon Sep 17 00:00:00 2001 From: Yevhenii Semendiak Date: Thu, 10 Feb 2022 16:30:01 +0200 Subject: [PATCH] Add back wandb CLI client, enable python deps check via pip check (#338) * add back wandb CLI client, enable python deps check via pip check * change deprecated run command --- Makefile | 3 +-- files/testing/dependencies.sh | 3 ++- requirements/python.txt | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f726f3c9..f07cd5ef 100644 --- a/Makefile +++ b/Makefile @@ -44,6 +44,5 @@ test_dependencies: -s $(TEST_PRESET) \ -v $(TEST_STORAGE)/$(TEST_STORAGE_SUFFIX):/var/storage \ --workdir /var/storage \ - $(TEST_IMAGE_NAME):$(BASE_IMAGE_TYPE) \ - $(TEST_CMD) + $(TEST_IMAGE_NAME):$(BASE_IMAGE_TYPE) -- $(TEST_CMD) neuro rm -r $(TEST_STORAGE)/$(TEST_STORAGE_SUFFIX) diff --git a/files/testing/dependencies.sh b/files/testing/dependencies.sh index b2ad7947..56d8cbd0 100755 --- a/files/testing/dependencies.sh +++ b/files/testing/dependencies.sh @@ -21,6 +21,7 @@ nvtop --version jupyter --version tensorboard --version +wandb --version aws --version tqdm --version @@ -45,7 +46,7 @@ python -c "import tensorboardX as pkg; print(f'{pkg.__package__} version: {pkg._ python -c "import cv2 as pkg; print(f'{pkg.__package__} version: {pkg.__version__}')" python -c "import torchvision as pkg; print(f'{pkg.__package__} version: {pkg.__version__}')" python -c "import torchaudio as pkg; print(f'{pkg.__package__} version: {pkg.__version__}')" - +pip check -v ### Framework-specific tests # test gpu availability in DL frameworks python gpu_pytorch.py diff --git a/requirements/python.txt b/requirements/python.txt index 85249e96..fffc1bc0 100644 --- a/requirements/python.txt +++ b/requirements/python.txt @@ -16,3 +16,4 @@ torchaudio==0.10.1+cu113 torchvision==0.11.2+cu113 tqdm==4.62.3 typing==3.7.4.3 +wandb[aws]==0.12.10