Skip to content

Commit 2a8141a

Browse files
committed
Restrict ocaml version to be <4.14.0
1 parent 114dfbd commit 2a8141a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Camelot [![Build and Test Status](https://github.com/upenn-cis1xx/camelot/workflows/Build%20&%20Test/badge.svg)](https://github.com/upenn-cis1xx/camelot/actions?query=workflow%3A%22Build+%26+Test%22)
2-
A modular and fully-configurable OCaml Linter / Style Checker for OCaml compiler version >= 4.10.0 < 4.13.0 (temporarily).
2+
A modular and fully-configurable OCaml Linter / Style Checker for OCaml compiler version >= 4.10.0 < 4.14.0 (temporarily).
33

44
## Dependencies (handled by opam)
5-
- ocaml >= v4.10.0 < 4.13.0
5+
- ocaml >= v4.10.0 < 4.14.0
66
- dune >= 2.5.0
77
- compiler-libs.common
88
- fswatch (for Build + Watch)

camelot.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ homepage: "https://github.com/upenn-cis1xx/camelot"
99
bug-reports: "https://github.com/upenn-cis1xx/camelot/issues"
1010
depends: [
1111
"dune" {>= "2.5"}
12-
"ocaml" {>= "4.13.0"}
12+
"ocaml" {>= "4.13.0" & < "4.14.0"}
1313
"ANSITerminal" {>= "0.8"}
1414
"yojson" {>= "1.7.0"}
1515
"camlp-streams" {>= "5.0.1"}

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
(synopsis "An OCaml Linter / Style Checker")
1515
(depends
1616
(dune (>= 2.5))
17-
(ocaml (>= 4.13.0))
17+
(ocaml (and (>= 4.13.0) (< 4.14.0)))
1818
(ANSITerminal (>= 0.8))
1919
(yojson (>= 1.7.0))
2020
(camlp-streams (>= 5.0.1))

0 commit comments

Comments
 (0)