Missing explicit riddley dependency?
Hello
I was trying to follow the example from README and this require (require '[gnuplot.core :as g]) raises an error
CompilerException java.io.FileNotFoundException: Could not locate riddley/walk__init.class or riddley/walk.clj on classpath
After I added [riddley "0.2.0"] as an explicit dependency to project.clj require and the rest of the example seems to be working.
HTH
I can reproduce this issue.
+1. Can also repro, and the same fix fixes it for me.
riddley is excluded from the dependencies by default:
https://github.com/aphyr/gnuplot/blob/a3d834f7b381ac37d3ef1c9b61bee41302ffa770/project.clj#L6-L8
But included in the :dev profile:
https://github.com/aphyr/gnuplot/blob/a3d834f7b381ac37d3ef1c9b61bee41302ffa770/project.clj#L10-L11
I don't know why.