Test fixes for 3.15 (GH-133599)

Followup to 942673ed19 (GH-133588)

* Update configure for Python 3.15

* Update magic number for 3.15

* Remove deprecated 'check_home' argument from sysconfig.is_python_build

* Add warningignore entries for Modules/_sqlite/clinic/connection.c.h

* Work around c-analyzer complaints about _testclinic deprecation tests

---------

Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
This commit is contained in:
Zachary Ware 2025-05-07 14:50:39 -05:00 committed by GitHub
parent 1460ccefd0
commit 74e2acddf6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 244 additions and 249 deletions

View file

@ -1272,6 +1272,7 @@ static PYC_MAGIC magic_values[] = {
{ 3500, 3549, L"3.12" },
{ 3550, 3599, L"3.13" },
{ 3600, 3649, L"3.14" },
{ 3650, 3699, L"3.15" },
{ 0 }
};