Kien Dang

Results 71 comments of Kien Dang

Sorry please don't merge yet. It's not perfect. I'll update + add more tests soon.

@azazel75 I've finished. Please review when you have time. ```python @tco def tail_sum(x, acc=0): return acc if len(x) == 0 else tail_sum(x[1:], acc + x[0]) ``` will now expand to...

Ran into the same issue and looks like apart from removing the `jekyll-feed` gem, monkey patching is the only thing that works. Can confirm neither commenting out `- jekyll-feed` under...

I actually noticed that too. Maybe something else was causing the long build time, but I haven't looked into it.

So basically just Shadaj said. You should try putting the options inside the root project settings ```scala lazy val python = Python("/home/michael/anaconda3/bin/python") lazy val javaOpts = python.scalapyProperties.get.map { case (k,...

@jmafoster1 I'll investigate why `scalapy.python.library` is ignored. In the meantime could you check if the environment variable SCALAPY_PYTHON_LIBRARY is set coz if it is it would overrride the system property....

Thanks. If you don't mind could you help print a couple of outputs? Just add these to the end of your `build.sbt` ```scala lazy val nativeLibraryPaths = settingKey[scala.util.Try[Seq[String]]]("native library paths")...

Thank you. So it looks like the correct settings were correctly generated by python-native-libs just somehow they are not picked up by scalapy. Will investigate this further. To be 100%...

I see. How about under `/home/michael/anaconda3/lib`?