Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update meta.yml #110

Merged
merged 1 commit into from
Dec 7, 2023
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
5 changes: 5 additions & 0 deletions .github/workflows/docker-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,13 @@ jobs:
image:
- 'mathcomp/mathcomp:2.0.0-coq-8.16'
- 'mathcomp/mathcomp:2.0.0-coq-8.17'
- 'mathcomp/mathcomp:2.0.0-coq-8.18'
- 'mathcomp/mathcomp:2.1.0-coq-8.16'
- 'mathcomp/mathcomp:2.1.0-coq-8.17'
- 'mathcomp/mathcomp:2.1.0-coq-8.18'
- 'mathcomp/mathcomp-dev:coq-8.16'
- 'mathcomp/mathcomp-dev:coq-8.17'
- 'mathcomp/mathcomp-dev:coq-8.18'
- 'mathcomp/mathcomp-dev:coq-dev'
fail-fast: false
steps:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ which will be used to subsume notations for finite sets, eventually.
- Cyril Cohen (initial)
- Kazuhiko Sakaguchi
- License: [CeCILL-B](CECILL-B)
- Compatible Coq versions: Coq 8.13 to 8.16
- Compatible Coq versions: Coq 8.16 to 8.18
- Additional dependencies:
- [MathComp ssreflect 1.13 to 1.15](https://math-comp.github.io)
- [MathComp ssreflect 2.0 to 2.1](https://math-comp.github.io)
- Coq namespace: `mathcomp.finmap`
- Related publication(s): none

Expand Down
4 changes: 2 additions & 2 deletions coq-mathcomp-finmap.opam
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ which will be used to subsume notations for finite sets, eventually."""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"coq" { (>= "8.16" & < "8.18~") | (= "dev") }
"coq-mathcomp-ssreflect" { (>= "2.0.0" & < "2.1~") | (= "dev") }
"coq" { (>= "8.16" & < "8.19~") | (= "dev") }
"coq-mathcomp-ssreflect" { (>= "2.0" & < "2.2~") | (= "dev") }
]

tags: [
Expand Down
36 changes: 13 additions & 23 deletions meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,47 +31,37 @@ license:
file: CECILL-B

supported_coq_versions:
text: Coq 8.13 to 8.16
opam: '{ (>= "8.13" & < "8.17~") | (= "dev") }'
text: Coq 8.16 to 8.18
opam: '{ (>= "8.16" & < "8.19~") | (= "dev") }'

tested_coq_opam_versions:
- version: '1.13.0-coq-8.13'
- version: '2.0.0-coq-8.16'
repo: 'mathcomp/mathcomp'
- version: '1.13.0-coq-8.14'
- version: '2.0.0-coq-8.17'
repo: 'mathcomp/mathcomp'
- version: '1.13.0-coq-8.15'
- version: '2.0.0-coq-8.18'
repo: 'mathcomp/mathcomp'
- version: '1.14.0-coq-8.13'
- version: '2.1.0-coq-8.16'
repo: 'mathcomp/mathcomp'
- version: '1.14.0-coq-8.14'
- version: '2.1.0-coq-8.17'
repo: 'mathcomp/mathcomp'
- version: '1.14.0-coq-8.15'
- version: '2.1.0-coq-8.18'
repo: 'mathcomp/mathcomp'
- version: '1.15.0-coq-8.13'
repo: 'mathcomp/mathcomp'
- version: '1.15.0-coq-8.14'
repo: 'mathcomp/mathcomp'
- version: '1.15.0-coq-8.15'
repo: 'mathcomp/mathcomp'
- version: '1.15.0-coq-8.16'
repo: 'mathcomp/mathcomp'
- version: 'coq-8.13'
repo: 'mathcomp/mathcomp-dev'
- version: 'coq-8.14'
- version: 'coq-8.16'
repo: 'mathcomp/mathcomp-dev'
- version: 'coq-8.15'
- version: 'coq-8.17'
repo: 'mathcomp/mathcomp-dev'
- version: 'coq-8.16'
- version: 'coq-8.18'
repo: 'mathcomp/mathcomp-dev'
- version: 'coq-dev'
repo: 'mathcomp/mathcomp-dev'

dependencies:
- opam:
name: coq-mathcomp-ssreflect
version: '{ (>= "1.13.0" & < "1.16~") | (= "dev") }'
version: '{ (>= "2.0" & < "2.2~") | (= "dev") }'
description: |-
[MathComp ssreflect 1.13 to 1.15](https://math-comp.github.io)
[MathComp ssreflect 2.0 to 2.1](https://math-comp.github.io)

namespace: mathcomp.finmap

Expand Down
Loading