Re: Bit rot and leiningen?

2020-02-06 Thread 'Simon Brooke' via Clojure
On Wednesday, 5 February 2020 22:34:42 UTC, Sean Corfield wrote: > > > because I still haven't found a development environment I like better > than LightTable > > > > Have you looked at Atom/Chlorine recently? It has the same inline result > display that LightTable had, it has a built-in

Re: Bit rot and leiningen?

2020-02-06 Thread Aditya Athalye
On Thursday, February 6, 2020 at 4:04:42 AM UTC+5:30, Sean Corfield wrote: > > > because I still haven't found a development environment I like better > than LightTable > > > > Have you looked at Atom/Chlorine recently? It has the same inline result > display that LightTable had, it has a

RE: Bit rot and leiningen?

2020-02-05 Thread Sean Corfield
oke' via Clojure Sent: Wednesday, February 5, 2020 2:16 AM To: Clojure Subject: Re: Bit rot and leiningen? On Wednesday, 5 February 2020 09:59:25 UTC, Simon Brooke wrote: On Tuesday, 4 February 2020 15:56:47 UTC, James Reeves wrote: This may be due to the plugins overriding a dependency that

Re: Bit rot and leiningen?

2020-02-05 Thread 'Simon Brooke' via Clojure
On Wednesday, 5 February 2020 09:59:25 UTC, Simon Brooke wrote: > > On Tuesday, 4 February 2020 15:56:47 UTC, James Reeves wrote: >> >> This may be due to the plugins overriding a dependency that Leiningen >> itself needs. There was an issue like this >>

Re: Bit rot and leiningen?

2020-02-05 Thread 'Simon Brooke' via Clojure
On Tuesday, 4 February 2020 15:56:47 UTC, James Reeves wrote: > > This may be due to the plugins overriding a dependency that Leiningen > itself needs. There was an issue like this > logged with > Lein-Ring, which I notice you're using.

Re: Bit rot and leiningen?

2020-02-04 Thread Alex Miller
What you're seeing here is a spec failure on macro specs that have been added in Clojure 1.9+ (tighter checks on code, so basically identifying existing silently wrong code). Note that lein is itself a Clojure program with plugins and running on it's own version of Clojure, which can change

Re: Bit rot and leiningen?

2020-02-04 Thread James Reeves
This may be due to the plugins overriding a dependency that Leiningen itself needs. There was an issue like this logged with Lein-Ring, which I notice you're using. Try updating the Lein-Ring version to 0.12.5 and see if that fixes the issue.