From adf9a35dfcd5ac167a5cf986153088083c1004f4 Mon Sep 17 00:00:00 2001 From: Nikita Grigorian Date: Tue, 22 Apr 2025 14:24:25 -0700 Subject: [PATCH] Permit building mkl_fft with Python 3.13 Add 3.13 builds to clang workflow --- .github/workflows/build-with-clang.yml | 2 +- pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-with-clang.yml b/.github/workflows/build-with-clang.yml index 4d455500..583128a2 100644 --- a/.github/workflows/build-with-clang.yml +++ b/.github/workflows/build-with-clang.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - python: ["3.9", "3.10", "3.11", "3.12"] + python: ["3.9", "3.10", "3.11", "3.12", "3.13"] numpy_version: ["numpy'<2'", "numpy'>=2'"] env: diff --git a/pyproject.toml b/pyproject.toml index eefe397e..98b40465 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,6 +42,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development", "Topic :: Scientific/Engineering", @@ -56,7 +57,7 @@ keywords = ["DFTI", "FFT", "Fourier", "MKL"] license = "BSD-3-Clause" name = "mkl_fft" readme = {file = "README.md", content-type = "text/markdown"} -requires-python = ">=3.9,<3.13" +requires-python = ">=3.9,<3.14" [project.optional-dependencies] test = ["pytest", "scipy"]