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 cc219a2 commit c6977d3Copy full SHA for c6977d3
pyrasterframes/build.sbt
@@ -26,14 +26,13 @@ pyNotebooks := {
26
lazy val pySparkCmd = taskKey[Unit]("Create build and emit command to run in pyspark")
27
pySparkCmd := {
28
val s = streams.value
29
- val jvm = assembly.value
30
val py = (Python / packageBin).value
31
val script = IO.createTemporaryDirectory / "pyrf_init.py"
32
IO.write(script, """
33
import pyrasterframes
34
from pyrasterframes.rasterfunctions import *
35
""")
36
- val msg = s"PYTHONSTARTUP=$script pyspark --jars $jvm --py-files $py"
+ val msg = s"PYTHONSTARTUP=$script pyspark --py-files $py"
37
s.log.debug(msg)
38
println(msg)
39
}
0 commit comments