You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sed -i "s/torch==[0-9\.]+/torch/g" torchsig/pyproject.toml && \
27
+
poetry config virtualenvs.create true && \
27
28
poetry install && \
28
29
for i in torch torchvision ; do poetry run pip install --no-cache-dir "$i"=="$(grep $i\\s pyproject.toml | grep -Eo '\"[0-9\.]+' | sed 's/\"//g')" || exit 1 ; done
29
-
python -c 'import torch' && \
30
-
python -c 'import rfml.annotation_utils as annotation_utils' && \
30
+
poetry run python -c 'import torch' && \
31
+
poetry run python -c 'import rfml.annotation_utils as annotation_utils' && \
31
32
poetry run black . --check --force-exclude torchsig
0 commit comments