From 3c777e899d51809389c8e76c8927935788b4ceac Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Mon, 5 Apr 2021 16:10:31 -0400 Subject: [PATCH] Update README and CONTRIBUTING for 0.19 (#7778) Authors: - Robert Maynard (https://github.com/robertmaynard) Approvers: - Jake Hemstad (https://github.com/jrhemstad) URL: https://github.com/rapidsai/cudf/pull/7778 --- CONTRIBUTING.md | 8 ++++---- README.md | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 98ecbcd3295..cfed2e1a692 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -131,13 +131,13 @@ run each time you commit changes. Compiler requirements: -* `gcc` version 5.4+ -* `nvcc` version 10.0+ -* `cmake` version 3.14.0+ +* `gcc` version 7.1+ +* `nvcc` version 10.1+ +* `cmake` version 3.18.0+ CUDA/GPU requirements: -* CUDA 10.0+ +* CUDA 10.1+ * NVIDIA driver 410.48+ * Pascal architecture or better diff --git a/README.md b/README.md index 687d25c200b..6d67251b845 100644 --- a/README.md +++ b/README.md @@ -65,15 +65,15 @@ Please see the [Demo Docker Repository](https://hub.docker.com/r/rapidsai/rapids cuDF can be installed with conda ([miniconda](https://conda.io/miniconda.html), or the full [Anaconda distribution](https://www.anaconda.com/download)) from the `rapidsai` channel: -For `cudf version == 0.18` : +For `cudf version == 0.19` : ```bash # for CUDA 10.1 conda install -c rapidsai -c nvidia -c numba -c conda-forge \ - cudf=0.18 python=3.7 cudatoolkit=10.1 + cudf=0.19 python=3.7 cudatoolkit=10.1 # or, for CUDA 10.2 conda install -c rapidsai -c nvidia -c numba -c conda-forge \ - cudf=0.18 python=3.7 cudatoolkit=10.2 + cudf=0.19 python=3.7 cudatoolkit=10.2 ```