From e13d9548e9e1a8fa25d8458aefaa11554f660d8d Mon Sep 17 00:00:00 2001 From: James Lamb Date: Thu, 22 Aug 2024 17:11:02 -0500 Subject: [PATCH] Drop Python 3.9 support (#684) Contributes to https://github.com/rapidsai/build-planning/issues/88 Finishes the work of dropping Python 3.9 support. This project stopped building / testing against Python 3.9 as of https://github.com/rapidsai/shared-workflows/pull/235. This PR updates configuration and docs to reflect that. ## Notes for Reviewers ### How I tested this Checked that there were no remaining uses like this: ```shell git grep -E '3\.9' git grep '39' git grep 'py39' ``` And similar for variations on Python 3.8 (to catch things that were missed the last time this was done). Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Bradley Dice (https://github.com/bdice) URL: https://github.com/rapidsai/rapids-cmake/pull/684 --- dependencies.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/dependencies.yaml b/dependencies.yaml index a9245d1c..54c35939 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -178,10 +178,6 @@ dependencies: specific: - output_types: conda matrices: - - matrix: - py: "3.9" - packages: - - python=3.9 - matrix: py: "3.10" packages: @@ -192,7 +188,7 @@ dependencies: - python=3.11 - matrix: packages: - - python>=3.9,<3.12 + - python>=3.10,<3.12 style_checks: common: - output_types: [conda, requirements]