Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refresh requirements #3622

Merged
merged 11 commits into from
Jun 1, 2023
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies:
- ninja
- notebook>=0.5.0
- numba>=0.57
- numpy>=1.21,<1.24
- numpy>=1.21
- numpydoc
- nvcc_linux-64=11.8
- openmpi
Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/cugraph-dgl/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ build:

requirements:
host:
- python x.x
- python
run:
- cugraph ={{ version }}
- dgl >=1.1.0.cu*
- numba >=0.57
- numpy
- python x.x
- python
- pytorch

tests:
Expand Down
3 changes: 2 additions & 1 deletion conda/recipes/cugraph-pyg/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@ requirements:
- sysroot_{{ target_platform }} {{ sysroot_version }}
host:
- cython >=0.29,<0.30
- python x.x
- python
- scikit-build >=0.13.1
run:
- distributed ==2023.3.2.1
- numba >=0.57
- numpy
- python
- pytorch >=2.0
- cupy >=12.0.0
- cugraph ={{ version }}
Expand Down
11 changes: 6 additions & 5 deletions conda/recipes/cugraph-service/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ outputs:
requirements:
host:
- pip
- python x.x
- python
run:
- python x.x
- python
- thriftpy2 >=0.4.15

- name: cugraph-service-server
Expand All @@ -47,7 +47,7 @@ outputs:
requirements:
host:
- pip
- python x.x
- python
- setuptools
- wheel
run:
Expand All @@ -58,8 +58,9 @@ outputs:
- dask-cuda ={{ minor_version }}
- dask-cudf ={{ minor_version }}
- distributed ==2023.3.2.1
- numpy
- python x.x
- numba >=0.57
- numpy >=1.21
- python
- thriftpy2 >=0.4.15
- ucx-py {{ ucx_py_version }}

Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/cugraph/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ requirements:
- libraft ={{ minor_version }}
- libraft-headers ={{ minor_version }}
- pylibraft ={{ minor_version}}
- python x.x
- python
- raft-dask ={{ minor_version }}
- scikit-build >=0.13.1
- setuptools
Expand All @@ -81,7 +81,7 @@ requirements:
- libraft-headers ={{ minor_version }}
- pylibcugraph ={{ version }}
- pylibraft ={{ minor_version }}
- python x.x
- python
- raft-dask ={{ minor_version }}
- ucx-proc=*=gpu
- ucx-py {{ ucx_py_version }}
Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/pylibcugraph/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ requirements:
- libraft ={{ minor_version }}
- libraft-headers ={{ minor_version }}
- pylibraft ={{ minor_version}}
- python x.x
- python
- rmm ={{ minor_version }}
- scikit-build >=0.13.1
- setuptools
Expand All @@ -69,7 +69,7 @@ requirements:
run:
- {{ pin_compatible('cudatoolkit', max_pin='x', min_pin='x') }}
- libcugraph ={{ version }}
- python x.x
- python

tests:
requirements:
Expand Down
3 changes: 2 additions & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ dependencies:
- output_types: [conda, pyproject]
packages:
- *numba
- &numpy numpy>=1.21,<1.24 # Temporarily upper bound numpy to avoid overflow deprecations
- &numpy numpy>=1.21
- output_types: [pyproject]
packages:
- &cugraph cugraph==23.6.*
Expand All @@ -356,6 +356,7 @@ dependencies:
- *dask_cuda
- *dask_cudf
- *distributed
- *numba
- *numpy
- *rmm
- *thrift
Expand Down
2 changes: 1 addition & 1 deletion python/cugraph-dgl/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ requires-python = ">=3.9"
dependencies = [
"cugraph==23.6.*",
"numba>=0.57",
"numpy>=1.21,<1.24",
"numpy>=1.21",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
classifiers = [
"Intended Audience :: Developers",
Expand Down
2 changes: 1 addition & 1 deletion python/cugraph-pyg/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ classifiers = [
dependencies = [
"cugraph==23.6.*",
"numba>=0.57",
"numpy>=1.21,<1.24",
"numpy>=1.21",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.

[project.urls]
Expand Down
5 changes: 3 additions & 2 deletions python/cugraph-service/server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ dependencies = [
"dask-cudf==23.6.*",
"dask==2023.3.2",
"distributed==2023.3.2.1",
"numpy>=1.21,<1.24",
"numpy>=1.21",
"numba>=0.57",
jakirkham marked this conversation as resolved.
Show resolved Hide resolved
"rmm==23.6.*",
"thriftpy2",
"ucx-py==0.32.*",
Expand All @@ -45,7 +46,7 @@ test = [
"aiohttp",
"fsspec[http]>=0.6.0",
"networkx>=2.5.1",
"numpy>=1.21,<1.24",
"numpy>=1.21",
"pandas",
"pytest",
"pytest-benchmark",
Expand Down
2 changes: 1 addition & 1 deletion python/cugraph/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ test = [
"aiohttp",
"fsspec[http]>=0.6.0",
"networkx>=2.5.1",
"numpy>=1.21,<1.24",
"numpy>=1.21",
"pandas",
"pytest",
"pytest-benchmark",
Expand Down
2 changes: 1 addition & 1 deletion python/pylibcugraph/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ classifiers = [
test = [
"cudf==23.6.*",
"networkx>=2.5.1",
"numpy>=1.21,<1.24",
"numpy>=1.21",
"pandas",
"pytest",
"pytest-benchmark",
Expand Down