Skip to content

Commit e7afc3d

Browse files
authored
[Fix #62] Remove support for Clojure prior to 1.8 (#63)
Tests are failing for Clojure versions prior to 1.8. Rather than trying to fix the code (or the tests), let's just say we don't support Clojure prior to 1.8
1 parent caec8d9 commit e7afc3d

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed

.circleci/config.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,6 @@ commands:
2323
run-tests:
2424
description: "Run tests"
2525
steps:
26-
- run:
27-
name: Run JVM tests with clojure 1.6
28-
command: |
29-
lein with-profile +1.6 test
30-
- run:
31-
name: Run JVM tests with clojure 1.7
32-
command: |
33-
lein with-profile +1.7 test
3426
- run:
3527
name: Run JVM tests with clojure 1.8
3628
command: |

project.clj

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,14 @@
33
:license {:name "Eclipse Public License - v 1.0"
44
:url "http://www.eclipse.org/legal/epl-v10.html"}
55
:description "Pure-clojure implementation of ruby's ordered hash and set types - instead of sorting by key, these collections retain insertion order."
6-
:dependencies [[org.clojure/clojure "1.9.0"]]
7-
:aliases {"testall" ["with-profile" "+1.6:+1.7:+1.8:+1.9:+1.10.0:+1.10.1" "test"]
8-
"depsall" ["with-profile" "+1.6:+1.7:+1.8:+1.9:+1.10.0:+1.10.1" "deps"]}
6+
:dependencies [[org.clojure/clojure "1.10.1"]]
7+
:aliases {"testall" ["with-profile" "+1.8:+1.9:+1.10.0:+1.10.1" "test"]
8+
"depsall" ["with-profile" "+1.8:+1.9:+1.10.0:+1.10.1" "deps"]}
99
:deploy-repositories [["releases" :clojars]
1010
["snapshots" :clojars]]
1111
:profiles {:1.10.1 {:dependencies [[org.clojure/clojure "1.10.1"]]}
1212
:1.10.0 {:dependencies [[org.clojure/clojure "1.10.0"]]}
13-
:1.9 {}
13+
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
1414
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}
15-
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
16-
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
1715
;; Not required except for benchmarks.
1816
:dev {:dependencies [[ordered-collections "0.4.2"]]} })

0 commit comments

Comments
 (0)