From 3a60e27140259accbe67e68aec378fe868310284 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Fri, 18 Oct 2024 09:26:32 -0500 Subject: [PATCH] put comment back, remove numpy from test deps --- ci/test_wheel.sh | 1 + dependencies.yaml | 3 +-- python/pylibwholegraph/pyproject.toml | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ci/test_wheel.sh b/ci/test_wheel.sh index 3836f0205..e7b648856 100755 --- a/ci/test_wheel.sh +++ b/ci/test_wheel.sh @@ -24,6 +24,7 @@ python -m pip install \ "$(echo ./dist/pylibwholegraph_${RAPIDS_PY_CUDA_SUFFIX}*.whl)[test]" # install torch separately, to be sure we get a CUDA build +rapids-logger "Installing PyTorch" python -m pip install \ --index-url "${INDEX_URL}" \ -v \ diff --git a/dependencies.yaml b/dependencies.yaml index 6c61889cd..dd35aa50e 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -227,7 +227,7 @@ dependencies: common: - output_types: [conda, pyproject, requirements] packages: - - &numpy numpy>=1.23,<3.0a0 + - numpy>=1.23,<3.0a0 test_cpp: common: - output_types: [conda] @@ -243,7 +243,6 @@ dependencies: - ninja - output_types: [conda, pyproject, requirements] packages: - - *numpy - pytest - pytest-forked - pytest-xdist diff --git a/python/pylibwholegraph/pyproject.toml b/python/pylibwholegraph/pyproject.toml index e336d8652..689ac021a 100644 --- a/python/pylibwholegraph/pyproject.toml +++ b/python/pylibwholegraph/pyproject.toml @@ -43,7 +43,6 @@ dependencies = [ [project.optional-dependencies] test = [ - "numpy>=1.23,<3.0a0", "pytest", "pytest-forked", "pytest-xdist",