Skip to content

Commit

Permalink
remove references to setup.py in docs (#1420)
Browse files Browse the repository at this point in the history
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: #1420
  • Loading branch information
jameslamb authored Jan 8, 2024
1 parent e2dc727 commit 9265976
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down

0 comments on commit 9265976

Please sign in to comment.