This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-06-04
Channels
- # announcements (3)
- # babashka (14)
- # beginners (151)
- # calva (14)
- # cider (9)
- # clj-kondo (24)
- # cljdoc (12)
- # cljs-dev (195)
- # cljsjs (3)
- # cljsrn (13)
- # clojars (12)
- # clojure (234)
- # clojure-dev (3)
- # clojure-europe (9)
- # clojure-greece (1)
- # clojure-italy (2)
- # clojure-japan (4)
- # clojure-nl (4)
- # clojure-spec (89)
- # clojure-taiwan (1)
- # clojure-uk (16)
- # clojuredesign-podcast (2)
- # clojurescript (17)
- # conjure (11)
- # core-async (4)
- # core-typed (31)
- # cursive (9)
- # datomic (8)
- # emacs (17)
- # figwheel (1)
- # fulcro (5)
- # ghostwheel (42)
- # graphql (3)
- # hugsql (5)
- # jackdaw (3)
- # jobs-discuss (93)
- # joker (4)
- # meander (6)
- # mount (1)
- # off-topic (23)
- # pathom (10)
- # re-frame (23)
- # reitit (7)
- # remote-jobs (18)
- # shadow-cljs (153)
- # spacemacs (24)
- # sql (30)
- # tools-deps (14)
- # vim (12)
- # xtdb (1)
Any ideas why this may be happening?
❯ clj -Sforce -Sdeps '{:deps {meander/epsilon {:mvn/version "0.0.421"}}}'
Error building classpath. Could not transfer artifact meander:epsilon:jar:0.0.421 from/to clojars ( ): Range Not Satisfiable (416)
I can fetch earlier versions:
❯ clj -Sforce -Sdeps '{:deps {meander/epsilon {:mvn/version "0.0.411"}}}'
Downloading: meander/epsilon/0.0.411/epsilon-0.0.411.pom from clojars
As far as I can tell, the version does exist and others can download it: https://clojars.org/meander/epsilon. I'm based out of Europe; any chance some cache or cdn is stale?@pithyless I purged the jar and pom, can you try again?
you might need to rm -rf ~/.m2/repository/meander/epsilon
- there is some repo metadata that gets cached
Thanks @alexmiller! If that doesn't work, I can purge the signatures/checksums as well in case the issue is with one of them
That fixed it. Thanks @alexmiller and @tcrawley for the fast response!