From e002cb4488c1349e1bb0dbdb7c82b0942cd88828 Mon Sep 17 00:00:00 2001 From: Sergey B Kirpichev Date: Sat, 20 Jun 2026 11:13:06 +0300 Subject: [PATCH] Allow python-gmp for CPython v3.15 --- .github/workflows/test.yml | 3 +-- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d3cdc716..ba6520de 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,8 +32,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.10', 3.11, 3.12, 3.13, 3.14, 3.13t, 3.14t, - 3.15, 3.15t] + python-version: ['3.10', 3.11, 3.12, 3.13, 3.14, 3.14t, 3.15, 3.15t] nogmpy: [false] purepy: [false] include: diff --git a/pyproject.toml b/pyproject.toml index ce99a6e3..4f2402e4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,7 @@ tests = ['pytest>=6', 'numpy; python_version<"3.15"', 'packaging', 'pytest-timeo develop = ['mpmath[tests]', 'flake518>=1.5', 'pytest-cov>=7', 'wheel', 'build'] gmpy2 = ['gmpy2>=2.3; python_version<"3.15"'] gmpy = ['mpmath[gmpy2]'] -gmp = ['python-gmp; python_version<"3.15"'] +gmp = ['python-gmp'] docs = ['sphinx', 'matplotlib', 'sphinxcontrib-autoprogram'] ci = ['pytest-xdist', 'diff_cover']