From 9265976815ffe00ab24eb23d0746c62918d96213 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 8 Jan 2024 16:02:33 -0600 Subject: [PATCH] remove references to setup.py in docs (#1420) Removes remaining references to `setup.py` in documentation. This project no longer has a `setup.py` as of its switch to `pyproject.toml` + `scikit-build-core` (see #1287, #1300). Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Lawrence Mitchell (https://github.com/wence-) - Mark Harris (https://github.com/harrism) URL: https://github.com/rapidsai/rmm/pull/1420 --- CONTRIBUTING.md | 2 +- README.md | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 61ac5873a..e24b94f14 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -37,7 +37,7 @@ are required. To set up a development environment, follow the steps in the [README](https://github.com/rapidsai/rmm/blob/main/README.md) for cloning the repository and creating the conda environment. Once the environment is created, you can build and install RMM using ```bash -$ python setup.py develop +$ python -m pip install ./python ``` This command will build the RMM Python library inside the clone and automatically make it importable when running Python anywhere on your machine. Remember, if you are unsure about anything, don't hesitate to comment on issues diff --git a/README.md b/README.md index 5aa7daab9..e033ef56f 100644 --- a/README.md +++ b/README.md @@ -127,8 +127,7 @@ $ make test - Build, install, and test the `rmm` python package, in the `python` folder: ```bash -$ python setup.py build_ext --inplace -$ python setup.py install +$ python -m pip install -e ./python $ pytest -v ```