We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 809c404 commit 966ac59Copy full SHA for 966ac59
keypoint_moseq/__init__.py
@@ -8,6 +8,9 @@
8
9
warnings.formatwarning = lambda msg, *a: str(msg)
10
11
+# Suppress harmless warnings thrown by Python 3.12's stricter syntax warnings
12
+warnings.filterwarnings('ignore', category=SyntaxWarning, module='panel.*')
13
+
14
from .io import *
15
from .viz import *
16
from .util import *
setup.cfg
@@ -40,6 +40,7 @@ install_requires =
40
numpy<=1.26.4
41
ipywidgets
42
ipympl
43
+ jax<0.7.0 # Required for python >3.12 which will install a version of jax that tensorflow has not updated to use properly yet
44
45
[options.extras_require]
46
dev =
0 commit comments