forked from pyodide/pyodide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
packages/cysignals: Add sagemath/cysignals#193 as patch
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
From 474179c87ab0ff562fdfd2471b02797e4bdd3148 Mon Sep 17 00:00:00 2001 | ||
From: Jerome Benoit <[email protected]> | ||
Date: Sat, 4 Nov 2023 23:22:30 +0100 | ||
Subject: [PATCH] cythonize: discard now obsoleted directive | ||
|
||
Description: upstream: fix: obsoleted compiler directive: discard | ||
This patch discards the now obsolete compiler directive | ||
`legacy_implicit_noexcept`. | ||
Origin: vendor, Debian | ||
Author: Jerome Benoit <[email protected]> | ||
Last-Update: 2023-11-04 | ||
--- | ||
setup.py | 1 - | ||
1 file changed, 1 deletion(-) | ||
|
||
diff --git a/setup.py b/setup.py | ||
index eb9c8f5a..79531705 100755 | ||
--- a/setup.py | ||
+++ b/setup.py | ||
@@ -173,7 +173,6 @@ def cythonize(self, extensions): | ||
compiler_directives=dict( | ||
binding=True, | ||
language_level=2, | ||
- legacy_implicit_noexcept=True, | ||
)) | ||
|
||
|