From 47def112183379743a3c5ecf7e73601cd20bbba9 Mon Sep 17 00:00:00 2001 From: Paul Yang Date: Thu, 30 May 2024 19:16:36 -0700 Subject: [PATCH] /* PR_START p--py312 06 */ Allow Python 3.12 in `pyproject.toml`. --- metricflow-semantics/pyproject.toml | 3 ++- pyproject.toml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/metricflow-semantics/pyproject.toml b/metricflow-semantics/pyproject.toml index c6883bcbae..59fb7f0468 100644 --- a/metricflow-semantics/pyproject.toml +++ b/metricflow-semantics/pyproject.toml @@ -7,7 +7,7 @@ name = "metricflow-semantics" version = "0.1.0" description = "Modules for semantic understanding of a MetricFlow query." readme = "README.md" -requires-python = ">=3.8,<3.12" +requires-python = ">=3.8,<3.13" license = "BUSL-1.1" authors = [ { name = "dbt Labs", email = "info@dbtlabs.com" }, @@ -20,6 +20,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ] diff --git a/pyproject.toml b/pyproject.toml index 414893931e..22c11f3fdf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "metricflow" version = "0.206.0.dev2" description = "Translates a simple metric definition into reusable SQL and executes it against the SQL engine of your choice." readme = "README.md" -requires-python = ">=3.8,<3.12" +requires-python = ">=3.8,<3.13" license = "BUSL-1.1" keywords = [] authors = [ @@ -21,6 +21,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ]