Skip to content

Commit aaf1cdb

Browse files
committed
1 parent f086fac commit aaf1cdb

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ remains the sole trusted code base.
4141
- Assia Mahboubi ([**@amahboubi**](https://github.com/amahboubi))
4242
- Kazuhiko Sakaguchi ([**@pi8027**](https://github.com/pi8027))
4343
- License: [CeCILL-C](LICENSE)
44-
- Compatible Coq versions: 8.16 or later
44+
- Compatible Coq versions: 8.18 or later
4545
- Additional dependencies:
46-
- [MathComp ssreflect 2.1 or later](https://math-comp.github.io)
46+
- [MathComp ssreflect 2.3 or later](https://math-comp.github.io)
4747
- [MathComp algebra](https://math-comp.github.io)
4848
- [MathComp field](https://math-comp.github.io)
4949
- [CoqEAL 2.0.4 or later](https://github.com/coq-community/coqeal)

coq-mathcomp-apery.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ remains the sole trusted code base."""
2323
build: [make "-j%{jobs}%"]
2424
install: [make "install"]
2525
depends: [
26-
"coq" {(>= "8.16" & < "8.20~") | (= "dev")}
26+
"coq" {(>= "8.18" & < "9.1~") | (= "dev")}
2727
"coq-mathcomp-ssreflect" {(>= "2.3" & < "2.4~") | (= "dev")}
2828
"coq-mathcomp-algebra"
2929
"coq-mathcomp-field"

meta.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ license:
5151
identifier: CECILL-C
5252

5353
supported_coq_versions:
54-
text: 8.16 or later
55-
opam: '{(>= "8.16" & < "8.20~") | (= "dev")}'
54+
text: 8.18 or later
55+
opam: '{(>= "8.18" & < "9.1~") | (= "dev")}'
5656

5757
tested_coq_opam_versions:
5858
- version: '2.3.0-coq-8.20'

theories/multinomial.v

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ Definition multinomial (l : seq nat) : nat :=
1818
Arguments multinomial l : simpl never.
1919

2020
(* Notation under evaluation ... *)
21-
Notation "''C' [ l ]" := (multinomial l)
22-
(at level 8, format "''C' [ l ]") : nat_scope.
21+
Notation "''C' [ l ]" := (multinomial l) : nat_scope.
2322

2423
(* For instance I would like to avoid double brackets, like in: *)
2524
Check 'C[[::]].

0 commit comments

Comments
 (0)