Spaces:
Running
Running
MilesCranmer
commited on
Commit
•
0d92619
1
Parent(s):
d236214
Remove Python 3.12 warning
Browse files- pysr/__init__.py +0 -9
pysr/__init__.py
CHANGED
@@ -1,12 +1,3 @@
|
|
1 |
-
import sys
|
2 |
-
import warnings
|
3 |
-
|
4 |
-
if sys.version_info >= (3, 12, 0):
|
5 |
-
warnings.warn(
|
6 |
-
"PySR experiences occassional segfaults with Python 3.12. "
|
7 |
-
+ "Please use an earlier version of Python with PySR until this issue is resolved."
|
8 |
-
)
|
9 |
-
|
10 |
from . import sklearn_monkeypatch
|
11 |
from .deprecated import best, best_callable, best_row, best_tex, pysr
|
12 |
from .export_jax import sympy2jax
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
from . import sklearn_monkeypatch
|
2 |
from .deprecated import best, best_callable, best_row, best_tex, pysr
|
3 |
from .export_jax import sympy2jax
|