MilesCranmer commited on
Commit
139b8d0
1 Parent(s): d325c42

Disable unused install command

Browse files
Files changed (1) hide show
  1. pysr/_cli/main.py +5 -3
pysr/_cli/main.py CHANGED
@@ -1,6 +1,6 @@
1
- import click
2
 
3
- from ..julia_helpers import install
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
- install(julia_project, quiet, precompile)
 
 
 
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
+ )