Re: numeric-tower versus clojure 1.9

2018-01-20 Thread Andrew Dabrowski
OK, it seems to have been an emacs issue rather than a cider one, at least after tweaking a few emacs configs related to help-mode I'm no longer having the problem. Thanks for your patience. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post

Re: numeric-tower versus clojure 1.9

2018-01-20 Thread Andrew Dabrowski
>>> Retrieving math.numeric-tower-0.0.4.pom from >>> https://repo1.maven.org/maven2/ (1k) >>> >>> Retrieving math.numeric-tower-0.0.4.jar from >>> https://repo1.maven.org/maven2/ (5k) >>> >>> … >>> >>> boot.user=> (clo

Re: numeric-tower versus clojure 1.9

2018-01-19 Thread Mark Engelberg
=> (clojure-version) >> >> "1.9.0" >> >> boot.user=> (require '[clojure.math.numeric-tower :as math]) >> >> nil >> >> boot.user=> >> >> >> >> Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN >> An Arc

Re: numeric-tower versus clojure 1.9

2018-01-19 Thread Andrew Dabrowski
nil > > boot.user=> > > > > Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN > An Architect's View -- http://corfield.org/ > > "If you're not annoying somebody, you're not really alive." > -- Margaret Atwood > > >

RE: numeric-tower versus clojure 1.9

2018-01-19 Thread Sean Corfield
04) 302-SEAN An Architect's View -- http://corfield.org/ "If you're not annoying somebody, you're not really alive." -- Margaret Atwood From: clojure@googlegroups.com on behalf of Alex Miller Sent: Friday, January 19, 2018 6:04:42 AM To: C

Re: numeric-tower versus clojure 1.9

2018-01-19 Thread Alex Miller
I can't reproduce this problem in either a lein repl or clj repl using math.numeric-tower + clojure 1.9. Looking at the code, I don't see anything that should be different with Clojure 1.9. On Friday, January 19, 2018 at 7:38:57 AM UTC-6, Bozhidar Batsov wrote: > > I also got a CIDER ticket abou

Re: numeric-tower versus clojure 1.9

2018-01-19 Thread Bozhidar Batsov
I also got a CIDER ticket about pretty much the same problem https://github.com/clojure-emacs/cider/issues/2169 I guess there's some problem with Clojure 1.9 and the tower, but I'm not sure about its exact extent. On 18 January 2018 at 02:41, Alex Miller wrote: > I can't reproduce that locally.

Re: numeric-tower versus clojure 1.9

2018-01-17 Thread Alex Miller
I can't reproduce that locally. Checking with the new clojure 1.9 clj tool: $ echo '{:deps {org.clojure/math.numeric-tower {:mvn/version "0.0.4"}}}' > deps.edn $ clj Clojure 1.9.0 user=> (require '[clojure.math.numeric-tower :as n]) nil user=> (dir n) MathFunctions abs ceil ... On Wednesday, Ja

Re: numeric-tower versus clojure 1.9

2018-01-17 Thread Mark Engelberg
It does use the underscore naming convention: https://github.com/clojure/math.numeric-tower/tree/master/src/main/clojure/clojure/math So I suspect there's something strange about your classpath or the dependencies haven't been downloaded, or something along those lines. On Wed, Jan 17, 2018 at 2:

Re: numeric-tower versus clojure 1.9

2018-01-17 Thread Andrew Dabrowski
Yes. On Wednesday, January 17, 2018 at 5:44:18 PM UTC-5, puzzler wrote: > > Did you put > > [org.clojure/math.numeric-tower "0.0.4"] > > in your leiningen project.clj file? > > > On Wed, Jan 17, 2018 at 2:26 PM, Andrew Dabrowski > wrote: > >> Is clojure.math.numeric-tower incompatible with cloju

Re: numeric-tower versus clojure 1.9

2018-01-17 Thread Mark Engelberg
Did you put [org.clojure/math.numeric-tower "0.0.4"] in your leiningen project.clj file? On Wed, Jan 17, 2018 at 2:26 PM, Andrew Dabrowski wrote: > Is clojure.math.numeric-tower incompatible with clojure 1.9? The numeric > tower is still at version 0.0.4, 4 years old. WHen I try to use I ge