From 305aa8fb5126a9d99faafe80cbb10cb026b34ea2 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Wed, 4 Sep 2024 19:10:09 -0500 Subject: [PATCH] Add support for Python 3.12. --- dependencies.yaml | 6 +++++- python/cugraph-pyg/pyproject.toml | 1 + python/pylibwholegraph/pyproject.toml | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/dependencies.yaml b/dependencies.yaml index 5cc10af..15b81eb 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -240,8 +240,12 @@ dependencies: packages: - python=3.11 - matrix: + py: "3.12" packages: - - python>=3.10,<3.12 + - python=3.12 + - matrix: + packages: + - python>=3.10,<3.13 python_build_wheel: common: - output_types: [conda, pyproject, requirements] diff --git a/python/cugraph-pyg/pyproject.toml b/python/cugraph-pyg/pyproject.toml index d9b9f32..8722df3 100644 --- a/python/cugraph-pyg/pyproject.toml +++ b/python/cugraph-pyg/pyproject.toml @@ -24,6 +24,7 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] dependencies = [ "cugraph==24.10.*", diff --git a/python/pylibwholegraph/pyproject.toml b/python/pylibwholegraph/pyproject.toml index 3539115..0c42335 100644 --- a/python/pylibwholegraph/pyproject.toml +++ b/python/pylibwholegraph/pyproject.toml @@ -34,6 +34,7 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] [tool.rapids-build-backend]