From 8d07dab015b94223dc3425c4515aa514fb1683c3 Mon Sep 17 00:00:00 2001 From: galipremsagar Date: Wed, 22 Jun 2022 08:03:51 -0700 Subject: [PATCH 1/2] sphinx 5 update --- docs/cudf/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cudf/source/conf.py b/docs/cudf/source/conf.py index d30e9142596..0fde1cd4740 100644 --- a/docs/cudf/source/conf.py +++ b/docs/cudf/source/conf.py @@ -91,7 +91,7 @@ # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = "en" # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. From 400bb1942314b87cb75a1d3031404c6c61fde458 Mon Sep 17 00:00:00 2001 From: galipremsagar Date: Wed, 22 Jun 2022 08:41:24 -0700 Subject: [PATCH 2/2] trivial fix --- python/cudf/cudf/tests/test_parquet.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/cudf/cudf/tests/test_parquet.py b/python/cudf/cudf/tests/test_parquet.py index 440559812cc..1916417f306 100644 --- a/python/cudf/cudf/tests/test_parquet.py +++ b/python/cudf/cudf/tests/test_parquet.py @@ -2552,9 +2552,9 @@ def test_parquet_reader_zstd_compression(datadir): pytest.mark.xfail(reason="zstd support is not enabled") -def test_read_parquet_multiple_files(datadir): - df_1_path = datadir / "df_1.parquet" - df_2_path = datadir / "df_2.parquet" +def test_read_parquet_multiple_files(tmpdir): + df_1_path = tmpdir / "df_1.parquet" + df_2_path = tmpdir / "df_2.parquet" df_1 = cudf.DataFrame({"id": range(100), "a": [1] * 100}) df_1.to_parquet(df_1_path)