fix: Removed overlooked torch scatter references (#3719)

* Removed torch scatter references

* Add back /
This commit is contained in:
Sebastian 2022-12-16 10:36:19 +01:00 committed by GitHub
parent c69222faf4
commit 4afdbc33b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 3 deletions

View File

@ -53,4 +53,3 @@ runs:
pip install .[all]
pip install rest_api/
pip install ui/
pip install torch-scatter -f https://data.pyg.org/whl/torch-1.12.0+cpu.html

View File

@ -46,7 +46,6 @@ target "base-cpu" {
base_immage = "python:3.10-slim"
haystack_version = "${HAYSTACK_VERSION}"
haystack_extras = notequal("",HAYSTACK_EXTRAS) ? "${HAYSTACK_EXTRAS}" : "[docstores,crawler,preprocessing,ocr,onnx,beir]"
torch_scatter = "https://data.pyg.org/whl/torch-1.12.0+cpu.html"
}
platforms = ["linux/amd64", "linux/arm64"]
}
@ -59,7 +58,6 @@ target "base-gpu" {
base_immage = "pytorch/pytorch:1.12.1-cuda11.3-cudnn8-runtime"
haystack_version = "${HAYSTACK_VERSION}"
haystack_extras = notequal("",HAYSTACK_EXTRAS) ? "${HAYSTACK_EXTRAS}" : "[docstores-gpu,crawler,preprocessing,ocr,onnx-gpu]"
torch_scatter = "https://data.pyg.org/whl/torch-1.12.1%2Bcu113.html"
}
platforms = ["linux/amd64", "linux/arm64"]
}