Skip to content

Commit

Permalink
simplify opam files since minimum OCaml version of Coq is 4.09.0
Browse files Browse the repository at this point in the history
  • Loading branch information
palmskog authored and lukaszcz committed Nov 13, 2023
1 parent 075ac9b commit 4131a8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions coq-hammer-tactics.opam
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ has been successfully applied to a project, only this package needs
to be installed; the hammer plugin is not required.
"""

build: [make "-j%{jobs}%" {ocaml:version >= "4.08"} "tactics"]
build: [make "-j%{jobs}%" "tactics"]
install: [
[make "install-tactics"]
[make "test-tactics"] {with-test}
]
depends: [
"ocaml" {>= "4.08"}
"ocaml" {>= "4.09.0"}
"coq" {= "dev"}
]

Expand Down
4 changes: 2 additions & 2 deletions coq-hammer.opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ learning from previous proofs with the translation of problems to the
logics of automated systems and the reconstruction of successfully found proofs.
"""

build: [make "-j%{jobs}%" {ocaml:version >= "4.08"} "plugin"]
build: [make "-j%{jobs}%" "plugin"]
install: [
[make "install-plugin"]
[make "test-plugin"] {with-test}
]
depends: [
"ocaml" {>= "4.08"}
"ocaml" {>= "4.09.0"}
"coq" {= "dev"}
("conf-g++" {build} | "conf-clang" {build})
"coq-hammer-tactics" {= version}
Expand Down

0 comments on commit 4131a8c

Please sign in to comment.