Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
139b8d0
1
Parent(s):
d325c42
Disable unused install command
Browse files- pysr/_cli/main.py +5 -3
pysr/_cli/main.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
import
|
2 |
|
3 |
-
|
4 |
|
5 |
|
6 |
@click.group("pysr")
|
@@ -35,4 +35,6 @@ def pysr(context):
|
|
35 |
help="Disable precompilation.",
|
36 |
)
|
37 |
def _install(julia_project, quiet, precompile):
|
38 |
-
|
|
|
|
|
|
1 |
+
import warnings
|
2 |
|
3 |
+
import click
|
4 |
|
5 |
|
6 |
@click.group("pysr")
|
|
|
35 |
help="Disable precompilation.",
|
36 |
)
|
37 |
def _install(julia_project, quiet, precompile):
|
38 |
+
warnings.warn(
|
39 |
+
"This command is deprecated. Julia dependencies are now installed at first import."
|
40 |
+
)
|