-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Python 3.13rc1 and drop support for Python 3.7. (#348)
* Try building on Python 3.13b1. * Use 3.13.0-beta.1. * Update all.yml * Update all.yml * Enable building wheels for pre-release Pythons for now. * Remove libexecinfo. * Vendor execinfo.h (as the code is not used but required by JUCE). * Add empty function bodies for execinfo. * Add empty function bodies for execinfo. * Try nogil builds. * Upgrade PyBind11 to 2.13.0. * Update all.yml * Enable CIBW_FREE_THREADED_SUPPORT. * Disable MUSL builds for free-threaded Python. * Disable MUSL builds for 3.13 beta. * Try only 3.13 on Linux for now. * Update to 3.13.0-rc.1. * Update all.yml * Update pyproject.toml * Update pyproject.toml * Update list of supported Python versions. * Stop building for Python 3.6. * Use NumPy 2.10 for Python 3.13. * Fix numpy dependencies in test-requirements.
- Loading branch information
Showing
9 changed files
with
87 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* Copyright (C) 1998-2018 Free Software Foundation, Inc. | ||
This file is part of the GNU C Library. | ||
The GNU C Library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 2.1 of the License, or (at your option) any later version. | ||
The GNU C Library is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public | ||
License along with the GNU C Library; if not, see | ||
<http://www.gnu.org/licenses/>. */ | ||
|
||
#ifndef _EXECINFO_H | ||
#define _EXECINFO_H 1 | ||
|
||
/* Store up to SIZE return address of the current program state in | ||
ARRAY and return the exact number of values stored. */ | ||
int backtrace(void **__array, int __size) { return 0; } | ||
|
||
/* Return names of functions from the backtrace list in ARRAY in a newly | ||
malloc()ed memory block. */ | ||
char **backtrace_symbols(void *const *__array, int __size) { | ||
return (char **)0; | ||
} | ||
|
||
/* This function is similar to backtrace_symbols() but it writes the result | ||
immediately to a file. */ | ||
void backtrace_symbols_fd(void *const *__array, int __size, int __fd) {} | ||
|
||
#endif /* execinfo.h */ |