Alexandre Archambault
Alexandre Archambault
@gneusch Importing a notebook from another one isn't possible at the moment. [Ammonite](https://ammonite.io), that almond relies on, [allows importing other scripts](https://ammonite.io/#ScriptImports), so that you can import Ammonite scripts (`*.sc` files)...
- [ ] [deeplearning4j tutorials](https://github.com/deeplearning4j/dl4j-examples/tree/master/tutorials) - [ ] [spark-scala-tutorial](https://github.com/deanwampler/spark-scala-tutorial/tree/master/notebooks) - [x] [TransmogrifAI helloworld](https://github.com/salesforce/TransmogrifAI/tree/master/helloworld/notebooks)
- [ ] https://github.com/chocoteam/notebooks
@jtjeferreira Did you try disabling checksums via `csrConfiguration`? Something like ```scala csrConfiguration := csrConfiguration.value.withChecksums(Vector(None)) ``` should do I think. (Maybe this needs to be applied to all projects?) I'm not...
Did you try putting the setting above in all projects?
That looks great! We could even go further than that, and enforce only pre-defined `Os` values, with `val`s in the `Os` companion, making the constructor private, and enforcing creating an...
Feel free to do the same for the architecture too. And a dedicated type for JVM id would be nice too, with no pre-defined values in the companion for this...
@lefou coursier handles fine the conflicts you're expecting above: ```text $ cs resolve com.softwaremill.sttp.client3:core_2.13:3.8.3 com.softwaremill.sttp.shared:ws_2.13:1.2.7 'org.scala-lang:scala-library:[2.13.8]' Resolution error: Conflicting dependencies: org.scala-lang:scala-library:2.13.8 or 2.13.9 or 2.13.10 wanted by com.softwaremill.sttp.client3:core_2.13:3.8.3 wants 2.13.10...
@k0ala Do you have more details about the VM you're using? (is it qemu-based? is it running itself on an old machine?) This involves CPU features, so that should be...
@thesamet You should be able to get rid of that error with exclusions. Excluding `org.scala-lang.modules:scala-xml_2.13` from the coursier dependency should work. About publishing coursier for Scala 3, this is going...