diff --git a/python/cudf/cudf/io/orc.py b/python/cudf/cudf/io/orc.py index 8865bdd9d33..3502f536bdd 100644 --- a/python/cudf/cudf/io/orc.py +++ b/python/cudf/cudf/io/orc.py @@ -295,18 +295,6 @@ def read_orc( """{docstring}""" from cudf import DataFrame - if skiprows is not None: - warnings.warn( - "skiprows is deprecated and will be removed.", - FutureWarning, - ) - - if num_rows is not None: - warnings.warn( - "num_rows is deprecated and will be removed.", - FutureWarning, - ) - # Multiple sources are passed as a list. If a single source is passed, # wrap it in a list for unified processing downstream. if not is_list_like(filepath_or_buffer): diff --git a/python/cudf/cudf/utils/ioutils.py b/python/cudf/cudf/utils/ioutils.py index 004d40bf999..c58088b425a 100644 --- a/python/cudf/cudf/utils/ioutils.py +++ b/python/cudf/cudf/utils/ioutils.py @@ -423,12 +423,6 @@ stripes: list, default None If not None, only these stripe will be read from the file. Stripes are concatenated with index ignored. -skiprows : int, default None - If not None, the number of rows to skip from the start of the file. - This parameter is deprecated. -num_rows : int, default None - If not None, the total number of rows to read. - This parameter is deprecated. use_index : bool, default True If True, use row index if available for faster seeking. use_python_file_object : boolean, default True