Skip to content

Commit

Permalink
Merge pull request #1743 from Alizter/update-8.17
Browse files Browse the repository at this point in the history
  • Loading branch information
Alizter authored Aug 19, 2023
2 parents 1cef9e1 + d60480c commit 6c2c3f6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: CI

on: [ push , pull_request ]
on: [ push , pull_request , merge_group ]

concurrency:
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
cancel-in-progress: true

# We set the supported coq-version from here. In order to use this environment variable correctly, look at how they are used in the following jobs.
env:
coq-version-supported: '8.16'
coq-version-supported: '8.17'
ocaml-version: '4.14-flambda'
deployment-branch: 'gh-pages'

Expand Down Expand Up @@ -273,7 +273,7 @@ jobs:
mv HoTT.svg HoTTCore.svg dep-graphs/
## Install coq-dpdgraph
opam install coq-dpdgraph.1.0+8.16 -y
opam install coq-dpdgraph.1.0+8.17 -y
# For some reason, we get a stackoverflow. So we are lax
# with making these.
Expand Down
2 changes: 1 addition & 1 deletion coq-hott.opam
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ homepage: "http://homotopytypetheory.org/"
bug-reports: "https://github.com/HoTT/HoTT/issues"
depends: [
"dune" {>= "3.5"}
"coq" {>= "8.16.0"}
"coq" {>= "8.17.0"}
"odoc" {with-doc}
]
build: [
Expand Down
3 changes: 2 additions & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@
(description
"To use the HoTT library, the following flags must be passed to coqc:\n -noinit -indices-matter\nTo use the HoTT library in a project, add the following to _CoqProject:\n -arg -noinit\n -arg -indices-matter\n")
(depends
(coq (>= 8.16.0))))
(coq
(>= 8.17.0))))

0 comments on commit 6c2c3f6

Please sign in to comment.