Skip to content

Commit ac1c293

Browse files
authored
cuopt-server: update dependencies (drop httpx, add psutil) (#413)
Fixes two small packaging issues with `cuopt-server`: * removes unnecessary dependency on `httpx` (`cuopt-server` does not use this) * declares dependency on `psutil` (this is declared in wheels but was missing in conda packages) ## Notes for Reviewers ### How I found these Was looking at the conda recipes and checked these things, similar to this: ```shell git grep httpx ``` # Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Ramakrishnap (https://github.com/rgsl888prabhu) URL: #413
1 parent 0c69099 commit ac1c293

File tree

7 files changed

+1
-7
lines changed

7 files changed

+1
-7
lines changed

conda/environments/all_cuda-129_arch-aarch64.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ dependencies:
3030
- gcc_linux-aarch64=14.*
3131
- gmock
3232
- gtest
33-
- httpx
3433
- ipython
3534
- jsonref==1.1.0
3635
- libcurand-dev

conda/environments/all_cuda-129_arch-x86_64.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ dependencies:
3030
- gcc_linux-64=14.*
3131
- gmock
3232
- gtest
33-
- httpx
3433
- ipython
3534
- jsonref==1.1.0
3635
- libcurand-dev

conda/environments/all_cuda-130_arch-aarch64.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ dependencies:
3030
- gcc_linux-aarch64=14.*
3131
- gmock
3232
- gtest
33-
- httpx
3433
- ipython
3534
- jsonref==1.1.0
3635
- libcurand-dev

conda/environments/all_cuda-130_arch-x86_64.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ dependencies:
3030
- gcc_linux-64=14.*
3131
- gmock
3232
- gtest
33-
- httpx
3433
- ipython
3534
- jsonref==1.1.0
3635
- libcurand-dev

conda/recipes/cuopt-server/recipe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ requirements:
3434
- cuopt =${{ version }}
3535
- fastapi >=0.104.1
3636
- jsonref =1.1.0
37-
- httpx
3837
- msgpack-python =1.1.0
3938
- msgpack-numpy =0.4.8
4039
- numpy >=1.23,<3.0a0
4140
- pandas>=2
41+
- psutil>=5.9,<6.0a0
4242
- python
4343
- uvicorn ${{ uvicorn_version }}
4444

dependencies.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,6 @@ dependencies:
393393
- output_types: [conda, requirements, pyproject]
394394
packages:
395395
- fastapi
396-
- httpx
397396
- *jsonref
398397
- *msgpack_numpy
399398
- *pandas

python/cuopt_server/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ dependencies = [
3535
"cuopt==25.10.*,>=0.0.0a0",
3636
"cupy-cuda13x>=13.6.0",
3737
"fastapi",
38-
"httpx",
3938
"jsonref==1.1.0",
4039
"msgpack-numpy==0.4.8",
4140
"msgpack==1.1.0",

0 commit comments

Comments
 (0)