From cef7a56816c2ae8e79131c983470495282e40492 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Tue, 17 Dec 2024 13:01:25 -0500 Subject: [PATCH 1/2] Fix small issues in pyproject.toml --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d327c0ec1..ba0a764db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ readme = "README.md" license = { file = "LICENSE.txt" } requires-python = ">=3.7" keywords = ["datafusion", "dataframe", "rust", "query-engine"] -classifier = [ +classifiers = [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", @@ -43,6 +43,7 @@ classifier = [ "Programming Language :: Rust", ] dependencies = ["pyarrow>=11.0.0", "typing-extensions;python_version<'3.13'"] +dynamic = ["version"] [project.urls] homepage = "https://datafusion.apache.org/python" From 56391f7b27a68c69f2a75bb6019aa6a597a95ce5 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Tue, 17 Dec 2024 13:03:47 -0500 Subject: [PATCH 2/2] Update classifiers --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ba0a764db..98bda5aae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,6 +39,9 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python", "Programming Language :: Rust", ]