Skip to content

Commit

Permalink
Changes append to not modify module variable, adds numpy dependency t…
Browse files Browse the repository at this point in the history
…o cugraph.
  • Loading branch information
rlratzel committed Nov 20, 2023
1 parent 412d217 commit 1453edc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,7 @@ dependencies:
- &dask rapids-dask-dependency==23.12.*
- &dask_cuda dask-cuda==23.12.*
- &numba numba>=0.57
- &numpy numpy>=1.21
- &ucx_py ucx-py==0.35.*
- output_types: conda
packages:
Expand All @@ -399,7 +400,7 @@ dependencies:
- output_types: [conda, pyproject]
packages:
- networkx>=3.0
- &numpy numpy>=1.21
- *numpy
python_run_cugraph_dgl:
common:
- output_types: [conda, pyproject]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ def setup_function():
dstCol = "dst"


input_data = UNDIRECTED_DATASETS
input_data.append(karate_disjoint)
input_data = UNDIRECTED_DATASETS + [karate_disjoint]
datasets = [pytest.param(d) for d in input_data]

fixture_params = gen_fixture_params_product(
Expand Down

0 comments on commit 1453edc

Please sign in to comment.