This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-12-21
Channels
- # adventofcode (8)
- # announcements (20)
- # babashka (43)
- # beginners (8)
- # biff (12)
- # calva (2)
- # cider (5)
- # clerk (6)
- # clj-commons (12)
- # clj-kondo (16)
- # clojure (20)
- # clojure-denver (1)
- # clojure-europe (14)
- # clojure-nl (1)
- # clojure-norway (105)
- # clojure-uk (2)
- # clojuredesign-podcast (5)
- # clojurescript (29)
- # datomic (2)
- # hyperfiddle (13)
- # jackdaw (1)
- # jobs (4)
- # jobs-discuss (4)
- # lsp (2)
- # malli (12)
- # pathom (2)
- # pedestal (1)
- # re-frame (22)
- # shadow-cljs (37)
- # squint (28)
- # xtdb (28)
- # yamlscript (4)
after upgrading malli and clojure and sci, I get the error :malli.core/sci-not-available
when validating a schema that uses :fn
, what can be wrong?
project.clj went from:
[org.clojure/clojure "1.10.1"]
[borkdude/sci "0.1.1-alpha.7"]
[metosin/malli "0.3.1"]
to
[org.clojure/clojure "1.11.1"]
[org.babashka/sci "0.8.41"]
[metosin/malli "0.13.0"]
👍 1
@U2PGHFU5U you need to upgrade to
org.babashka/sci
haha yes we haven’t bumped the deps in some time
thanks!!
nice find
also had to add [borkdude/edamame "1.3.23"]
to fix
Execution error (FileNotFoundException) at edamame.impl.parser/eval40169$loading (parser.cljc:1).
Could not locate clojure/tools/reader/impl/inspect__init.class, clojure/tools/reader/impl/inspect.clj or clojure/tools/reader/impl/inspect.cljc on classpath.
but now it works 🙂hmm maybe I just need [borkdude/sci "0.2.7"]
nope, still get :malli.core/sci-not-available