Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/docker-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
- 'coqorg/coq:8.19'
- 'coqorg/coq:8.18'
- 'rocq/rocq-prover:dev'
- 'rocq/rocq-prover:9.2'
- 'rocq/rocq-prover:9.1'
- 'rocq/rocq-prover:9.0'
fail-fast: false
steps:
Expand Down
5 changes: 3 additions & 2 deletions coq-math-classes.opam
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ build: [
]
install: [make "install"]
depends: [
"coq" {(>= "8.18" & < "9.1~") | (= "dev")}
"coq-bignums"
("coq" {>= "8.18" & < "8.21~"}
| "rocq-core" {(>= "9.0" & < "9.4~") | (= "dev")})
"coq-bignums"
]

tags: [
Expand Down
9 changes: 7 additions & 2 deletions meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,16 @@ license:
identifier: MIT

supported_coq_versions:
text: Coq/Rocq 8.18 or later (use releases for other Coq/Rocq versions)
opam: '{(>= "8.18" & < "9.1~") | (= "dev")}'
text: Coq 8.18 to 8.20 or Rocq 9.0 to 9.3 (use releases for other Coq/Rocq versions)
# The coq-core/rocq-core split (Rocq 9.2 drops the `coq` compatibility
# package) means the compiler dependency must be hand-written as a
# disjunction in coq-math-classes.opam; this field is kept for reference.
opam: '{>= "8.18" & < "8.21~"} | "rocq-core" {(>= "9.0" & < "9.4~") | (= "dev")}'

tested_rocq_opam_versions:
- version: dev
- version: "9.2"
- version: "9.1"
- version: "9.0"

tested_coq_opam_versions:
Expand Down
Loading