diff --git a/conda/environments/all_cuda-118_arch-x86_64.yaml b/conda/environments/all_cuda-118_arch-x86_64.yaml index dc78bf68dda..79b786fe012 100644 --- a/conda/environments/all_cuda-118_arch-x86_64.yaml +++ b/conda/environments/all_cuda-118_arch-x86_64.yaml @@ -79,7 +79,6 @@ dependencies: - pytest-xdist - pytest<8 - python-confluent-kafka>=1.9.0,<1.10.0a0 -- python-snappy>=0.6.0 - python>=3.9,<3.11 - pytorch<1.12.0 - rapids-dask-dependency==24.4.* diff --git a/conda/environments/all_cuda-122_arch-x86_64.yaml b/conda/environments/all_cuda-122_arch-x86_64.yaml index 627cfa7667c..66a4ee57238 100644 --- a/conda/environments/all_cuda-122_arch-x86_64.yaml +++ b/conda/environments/all_cuda-122_arch-x86_64.yaml @@ -77,7 +77,6 @@ dependencies: - pytest-xdist - pytest<8 - python-confluent-kafka>=1.9.0,<1.10.0a0 -- python-snappy>=0.6.0 - python>=3.9,<3.11 - pytorch<1.12.0 - rapids-dask-dependency==24.4.* diff --git a/dependencies.yaml b/dependencies.yaml index 4011bd764e1..4281e907862 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -612,7 +612,6 @@ dependencies: - hypothesis - pytest-benchmark - pytest-cases>=3.8.2 - - python-snappy>=0.6.0 - scipy - output_types: conda packages: @@ -712,49 +711,8 @@ dependencies: packages: # dependencies to run pandas tests # https://github.com/pandas-dev/pandas/blob/main/environment.yml - # TODO: When pandas 2.0 is the minimum version, can just specify pandas[all] - - beautifulsoup4 - - blosc - - brotlipy - - boto3 - - botocore>=1.24.21 - - bottleneck - - fastparquet - - flask - - fsspec - - html5lib - - hypothesis - - gcsfs - - ipython - - jinja2 - - lxml - - matplotlib - - moto - - numba - - numexpr - - openpyxl - - odfpy - - py - - psycopg2-binary - - pyarrow - - pymysql - - pyreadstat - - pytest-asyncio - - pytest-reportlog - - python-snappy - - pytest-timeout - - pyxlsb - - s3fs - - scipy - - sqlalchemy - - tables - - pandas-gbq - - tabulate - - xarray - - xlrd - - xlsxwriter - - xlwt - - zstandard + # pandas[all] includes all of the required dependencies + - pandas[all] test_python_cudf_pandas: common: - output_types: pyproject diff --git a/python/cudf/pyproject.toml b/python/cudf/pyproject.toml index ef3b439bdf4..590786f2414 100644 --- a/python/cudf/pyproject.toml +++ b/python/cudf/pyproject.toml @@ -62,55 +62,13 @@ test = [ "pytest-cov", "pytest-xdist", "pytest<8", - "python-snappy>=0.6.0", "scipy", "tokenizers==0.13.1", "transformers==4.24.0", "tzdata", ] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`. pandas-tests = [ - "beautifulsoup4", - "blosc", - "boto3", - "botocore>=1.24.21", - "bottleneck", - "brotlipy", - "fastparquet", - "flask", - "fsspec", - "gcsfs", - "html5lib", - "hypothesis", - "ipython", - "jinja2", - "lxml", - "matplotlib", - "moto", - "numba", - "numexpr", - "odfpy", - "openpyxl", - "pandas-gbq", - "psycopg2-binary", - "py", - "pyarrow", - "pymysql", - "pyreadstat", - "pytest-asyncio", - "pytest-reportlog", - "pytest-timeout", - "python-snappy", - "pyxlsb", - "s3fs", - "scipy", - "sqlalchemy", - "tables", - "tabulate", - "xarray", - "xlrd", - "xlsxwriter", - "xlwt", - "zstandard", + "pandas[all]", ] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`. cudf-pandas-tests = [ "ipython",