I'm getting the No reader function for tag Inf
error, and I seem to be using the correct version of clojure.tools.reader.
$ lein deps :tree | grep tools.reader
[figwheel "0.5.14" :exclusions [[org.clojure/tools.reader]]]
[org.clojure/core.async "0.3.443" :exclusions [[org.clojure/tools.reader]]]
[org.clojure/tools.reader "1.2.1"]
Any ideas what else could cause the problem?@pgarrett this is always the tools reader dep
if you have a dep that has AOT compiled classes in it, it seems possible to override the declared tools.reader
That was it. Thanks!