cudf-cu12 24.8.2__tar.gz → 24.10.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. PKG-INFO +15 -9
PKG-INFO CHANGED
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cudf-cu12
3
- Version: 24.8.2
3
+ Version: 24.10.1
4
4
  Summary: cuDF - GPU Dataframe
5
5
  Author: NVIDIA Corporation
6
6
  License: Apache 2.0
@@ -9,25 +9,27 @@ Classifier: Topic :: Database
9
9
  Classifier: Topic :: Scientific/Engineering
10
10
  Classifier: License :: OSI Approved :: Apache Software License
11
11
  Classifier: Programming Language :: Python
12
- Classifier: Programming Language :: Python :: 3.9
13
12
  Classifier: Programming Language :: Python :: 3.10
14
13
  Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
15
  Project-URL: Homepage, https://github.com/rapidsai/cudf
16
16
  Project-URL: Documentation, https://docs.rapids.ai/api/cudf/stable/
17
- Requires-Python: >=3.9
17
+ Requires-Python: >=3.10
18
18
  Requires-Dist: cachetools
19
19
  Requires-Dist: cuda-python<13.0a0,>=12.0
20
20
  Requires-Dist: cupy-cuda12x>=12.0.0
21
21
  Requires-Dist: fsspec>=0.6.0
22
+ Requires-Dist: libcudf-cu12==24.10.*
22
23
  Requires-Dist: numba>=0.57
23
- Requires-Dist: numpy<2.0a0,>=1.23
24
+ Requires-Dist: numpy<3.0a0,>=1.23
24
25
  Requires-Dist: nvtx>=0.2.1
25
26
  Requires-Dist: packaging
26
27
  Requires-Dist: pandas<2.2.3dev0,>=2.0
27
- Requires-Dist: pyarrow<16.2.0a0,>=16.1.0
28
+ Requires-Dist: pyarrow<18.0.0a0,>=14.0.0
29
+ Requires-Dist: pylibcudf-cu12==24.10.*
28
30
  Requires-Dist: pynvjitlink-cu12
29
31
  Requires-Dist: rich
30
- Requires-Dist: rmm-cu12==24.8.*
32
+ Requires-Dist: rmm-cu12==24.10.*
31
33
  Requires-Dist: typing_extensions>=4.0.0
32
34
  Requires-Dist: cramjam; extra == "test"
33
35
  Requires-Dist: fastavro>=0.22.9; extra == "test"
@@ -42,9 +44,13 @@ Requires-Dist: scipy; extra == "test"
42
44
  Requires-Dist: tokenizers==0.15.2; extra == "test"
43
45
  Requires-Dist: transformers==4.39.3; extra == "test"
44
46
  Requires-Dist: tzdata; extra == "test"
47
+ Requires-Dist: ipython; extra == "pandas-tests"
45
48
  Requires-Dist: pandas[clipboard,compression,computation,excel,feather,fss,hdf5,html,output-formatting,parquet,performance,plot,pyarrow,spss,test,xml]; extra == "pandas-tests"
46
49
  Requires-Dist: pytest-reportlog; extra == "pandas-tests"
47
50
  Requires-Dist: ipython; extra == "cudf-pandas-tests"
51
+ Requires-Dist: jupyter_client; extra == "cudf-pandas-tests"
52
+ Requires-Dist: nbconvert; extra == "cudf-pandas-tests"
53
+ Requires-Dist: nbformat; extra == "cudf-pandas-tests"
48
54
  Requires-Dist: openpyxl; extra == "cudf-pandas-tests"
49
55
  Provides-Extra: test
50
56
  Provides-Extra: pandas-tests
@@ -132,17 +138,17 @@ pip install --extra-index-url=https://pypi.nvidia.com cudf-cu12
132
138
 
133
139
  ### Conda
134
140
 
135
- cuDF can be installed with conda (via [miniconda](https://docs.conda.io/projects/miniconda/en/latest/) or the full [Anaconda distribution](https://www.anaconda.com/download) from the `rapidsai` channel:
141
+ cuDF can be installed with conda (via [miniforge](https://github.com/conda-forge/miniforge)) from the `rapidsai` channel:
136
142
 
137
143
  ```bash
138
144
  conda install -c rapidsai -c conda-forge -c nvidia \
139
- cudf=24.08 python=3.11 cuda-version=12.5
145
+ cudf=24.10 python=3.12 cuda-version=12.5
140
146
  ```
141
147
 
142
148
  We also provide [nightly Conda packages](https://anaconda.org/rapidsai-nightly) built from the HEAD
143
149
  of our latest development branch.
144
150
 
145
- Note: cuDF is supported only on Linux, and with Python versions 3.9 and later.
151
+ Note: cuDF is supported only on Linux, and with Python versions 3.10 and later.
146
152
 
147
153
  See the [RAPIDS installation guide](https://docs.rapids.ai/install) for more OS and version info.
148
154