From 0728fc6eaad220c7b0d8e056b07c988432327e48 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Tue, 10 Sep 2024 12:25:13 -0500 Subject: [PATCH] Update Python versions in cuvs_bench pyproject.toml. (#318) This is a follow-up for #275 and #312. I updated `cuvs_bench`'s `pyproject.toml` to drop Python 3.9 and add Python 3.12. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - James Lamb (https://github.com/jameslamb) URL: https://github.com/rapidsai/cuvs/pull/318 --- python/cuvs_bench/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/cuvs_bench/pyproject.toml b/python/cuvs_bench/pyproject.toml index fe49d3d22..7bb9e2f8d 100644 --- a/python/cuvs_bench/pyproject.toml +++ b/python/cuvs_bench/pyproject.toml @@ -16,7 +16,7 @@ authors = [ { name = "NVIDIA Corporation" }, ] license = { text = "Apache 2.0" } -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ ] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`. classifiers = [ @@ -25,9 +25,9 @@ classifiers = [ "Topic :: Scientific/Engineering", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] [project.urls]