Skip to content

Commit 967a333

Browse files
committed
Merge branch-21.12 into branch-22.02
2 parents c1bfb26 + 012bfe9 commit 967a333

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

conda/environments/cudf_dev_cuda11.0.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ channels:
77
- rapidsai-nightly
88
- conda-forge
99
dependencies:
10-
- clang=11.0.0
11-
- clang-tools=11.0.0
12-
- cupy>7.1.0,<10.0.0a0
10+
- clang=11.1.0
11+
- clang-tools=11.1.0
12+
- cupy>=9.5.0,<10.0.0a0
1313
- rmm=22.02.*
1414
- cmake>=3.20.1
1515
- cmake_setuptools>=0.1.3

conda/environments/cudf_dev_cuda11.2.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ channels:
77
- rapidsai-nightly
88
- conda-forge
99
dependencies:
10-
- clang=11.0.0
11-
- clang-tools=11.0.0
12-
- cupy>7.1.0,<10.0.0a0
10+
- clang=11.1.0
11+
- clang-tools=11.1.0
12+
- cupy>=9.5.0,<10.0.0a0
1313
- rmm=22.02.*
1414
- cmake>=3.20.1
1515
- cmake_setuptools>=0.1.3

conda/environments/cudf_dev_cuda11.5.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ channels:
77
- rapidsai-nightly
88
- conda-forge
99
dependencies:
10-
- clang=11.0.0
11-
- clang-tools=11.0.0
12-
- cupy>7.1.0,<10.0.0a0
13-
- rmm=21.12.*
10+
- clang=11.1.0
11+
- clang-tools=11.1.0
12+
- cupy>=9.5.0,<10.0.0a0
13+
- rmm=22.02.*
1414
- cmake>=3.20.1
1515
- cmake_setuptools>=0.1.3
1616
- python>=3.7,<3.9

conda/recipes/cudf/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ requirements:
4040
- python
4141
- typing_extensions
4242
- pandas >=1.0,<1.4.0dev0
43-
- cupy >7.1.0,<10.0.0a0
43+
- cupy >=9.5.0,<10.0.0a0
4444
- numba >=0.53.1
4545
- numpy
4646
- {{ pin_compatible('pyarrow', max_pin='x.x.x') }} *cuda

cpp/scripts/run-clang-format.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import sys
2323
import tempfile
2424

25-
EXPECTED_VERSION = "11.0.0"
25+
EXPECTED_VERSION = "11.1.0"
2626
VERSION_REGEX = re.compile(r"clang-format version ([0-9.]+)")
2727
# NOTE: populate this list with more top-level dirs as we add more of them to
2828
# the cudf repo

python/cudf/cudf/tests/test_concat.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ def test_concat_empty_dataframes(df, other, ignore_index):
576576
if expected.shape != df.shape:
577577
for key, col in actual[actual.columns].iteritems():
578578
if is_categorical_dtype(col.dtype):
579-
if expected[key].dtype != "category":
579+
if not is_categorical_dtype(expected[key].dtype):
580580
# TODO: Pandas bug:
581581
# https://github.com/pandas-dev/pandas/issues/42840
582582
expected[key] = expected[key].fillna("-1").astype("str")
@@ -1186,7 +1186,7 @@ def test_concat_join_empty_dataframes(
11861186
if axis == 0:
11871187
for key, col in actual[actual.columns].iteritems():
11881188
if is_categorical_dtype(col.dtype):
1189-
if expected[key].dtype != "category":
1189+
if not is_categorical_dtype(expected[key].dtype):
11901190
# TODO: Pandas bug:
11911191
# https://github.com/pandas-dev/pandas/issues/42840
11921192
expected[key] = (

0 commit comments

Comments
 (0)