From 335fcd1358bbb1b3e423c140b3ae20fdc6ff4e3a Mon Sep 17 00:00:00 2001 From: Ashwin Srinath <3190405+shwina@users.noreply.github.com> Date: Thu, 29 Jun 2023 09:25:55 -0400 Subject: [PATCH] Bump typing_extensions minimum version to 4.0.0 (#13618) Closes #13616 Authors: - Ashwin Srinath (https://github.com/shwina) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) - Bradley Dice (https://github.com/bdice) - Ray Douglass (https://github.com/raydouglass) - Lawrence Mitchell (https://github.com/wence-) --- conda/environments/all_cuda-118_arch-x86_64.yaml | 2 +- conda/recipes/cudf/meta.yaml | 2 +- dependencies.yaml | 2 +- python/cudf/pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conda/environments/all_cuda-118_arch-x86_64.yaml b/conda/environments/all_cuda-118_arch-x86_64.yaml index 9eb0bd21e71..00776d1333b 100644 --- a/conda/environments/all_cuda-118_arch-x86_64.yaml +++ b/conda/environments/all_cuda-118_arch-x86_64.yaml @@ -86,7 +86,7 @@ dependencies: - sysroot_linux-64==2.17 - tokenizers==0.13.1 - transformers==4.24.0 -- typing_extensions +- typing_extensions>=4.0.0 - pip: - git+https://github.com/python-streamz/streamz.git@master name: all_cuda-118_arch-x86_64 diff --git a/conda/recipes/cudf/meta.yaml b/conda/recipes/cudf/meta.yaml index 47110fd2990..8aed6a0420b 100644 --- a/conda/recipes/cudf/meta.yaml +++ b/conda/recipes/cudf/meta.yaml @@ -61,7 +61,7 @@ requirements: run: - protobuf >=4.21.6,<4.22 - python - - typing_extensions + - typing_extensions >=4.0.0 - pandas >=1.3,<1.6.0dev0 - cupy >=12.0.0 - numba >=0.57 diff --git a/dependencies.yaml b/dependencies.yaml index 066a38a67bb..e3362cdf08b 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -354,7 +354,7 @@ dependencies: - nvtx>=0.2.1 - packaging - rmm==23.6.* - - typing_extensions + - typing_extensions>=4.0.0 - *protobuf - output_types: conda packages: diff --git a/python/cudf/pyproject.toml b/python/cudf/pyproject.toml index 9fe0383a6fb..4454dbeb495 100644 --- a/python/cudf/pyproject.toml +++ b/python/cudf/pyproject.toml @@ -40,7 +40,7 @@ dependencies = [ "ptxcompiler", "pyarrow==11.*", "rmm==23.6.*", - "typing_extensions", + "typing_extensions>=4.0.0", ] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`. classifiers = [ "Intended Audience :: Developers",