Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

quil leining template generates warnings #20

Open
practicalli-johnny opened this issue Apr 15, 2015 · 1 comment
Open

quil leining template generates warnings #20

practicalli-johnny opened this issue Apr 15, 2015 · 1 comment

Comments

@practicalli-johnny
Copy link

Running the command lein new quil drawing creates a project. When running lein deps in this drawing project, warnings are generated

~/p/clojure➜ lein new quil drawing-test
Generating fresh 'lein new' quil project.
~/p/clojure➜ cd drawing-test
~/p/c/drawing-test➜ lein deps
WARNING!!! version ranges found for:
[quil "2.2.5"] -> [com.keminglabs/cljx "0.4.0"] -> [org.clojars.trptcolin/sjacket "0.1.0.6"] -> [org.clojure/clojure "[1.3.0,)"]
Consider using [quil "2.2.5" :exclusions [org.clojure/clojure]].
[quil "2.2.5"] -> [com.keminglabs/cljx "0.4.0"] -> [org.clojars.trptcolin/sjacket "0.1.0.6"] -> [net.cgrand/regex "1.1.0"] -> [org.clojure/clojure "[1.2.0,)"]
Consider using [quil "2.2.5" :exclusions [org.clojure/clojure]].
[quil "2.2.5"] -> [com.keminglabs/cljx "0.4.0"] -> [org.clojars.trptcolin/sjacket "0.1.0.6"] -> [net.cgrand/parsley "0.9.1"] -> [org.clojure/clojure "[1.2.0,)"]
Consider using [quil "2.2.5" :exclusions [org.clojure/clojure]].
[quil "2.2.5"] -> [com.keminglabs/cljx "0.4.0"] -> [org.clojars.trptcolin/sjacket "0.1.0.6"] -> [net.cgrand/parsley "0.9.1"] -> [net.cgrand/regex "1.1.0"] -> [org.clojure/clojure "[1.2.0,)"]
Consider using [quil "2.2.5" :exclusions [org.clojure/clojure]].

This seems to be an issue with Quil version 2.2.5 and Clojure 1.6. Edit the project.clj file and either change the quil dependency to 2.2.4 or add :exclusions [org.clojure/clojure] to the dependency entry for quil 2.2.5

(defproject drawing-test "0.1.0-SNAPSHOT"
  :description "FIXME: write description"
  :url "http://example.com/FIXME"
  :license {:name "Eclipse Public License"
            :url "http://www.eclipse.org/legal/epl-v10.html"}
  :dependencies [[org.clojure/clojure "1.6.0"]
                 [quil "2.2.5" :exclusions [org.clojure/clojure]]])

Or simply clone the existing repository, rather than create your own project with Leiningen.

Thank you

@yokolet
Copy link
Member

yokolet commented Aug 31, 2015

Hey, @jr0cket , do you see the warning still now? As far as I tried recently, quil version was updated to 2.2.6 and didn't see any warning. Give it a try again.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants