summarylogtreecommitdiffstats
path: root/sagemath-jedi-0.16.patch
blob: 27769bdb8cfdf431f1897aba7978918d64819003 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- a/src/sage/all.py
+++ b/src/sage/all.py
@@ -324,6 +324,9 @@ warnings.filterwarnings('ignore', category=DeprecationWarning,
 # However, be sure to keep OUR deprecation warnings
 warnings.filterwarnings('default', category=DeprecationWarning,
     message=r'[\s\S]*See https\?://trac\.sagemath\.org/[0-9]* for details.')
+# jedi 0.16 deprecation warnings
+warnings.filterwarnings('ignore', category=DeprecationWarning,
+    message='.*Use get_signatures().*')
 # Python 3.8 deprecation warnings
 warnings.filterwarnings('ignore', category=DeprecationWarning,
     message='.*PY_SSIZE_T_CLEAN.*')