Skip to content

Commit

Permalink
.os.yml: drop support for 4.12, check also 5.2 (#682)
Browse files Browse the repository at this point in the history
* os.yml: drop support for 4.12, check also 5.2

And later we could switch to 5.3, to ensure compatibility with recent compilers

* Update also bounds on the opam files
  • Loading branch information
mseri authored Nov 19, 2024
1 parent fc4a49c commit f8aeeea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- ubuntu-latest
# - windows-latest
ocaml-compiler:
- "5.2"
- "5.1"
- "4.14"
- "4.12"
- "4.10"

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion owl-base.opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ build: [
]

depends: [
"ocaml" {>= "4.10.0"}
"ocaml" {>= "4.12.0"}
"base-bigarray"
"dune" {>= "2.0.0"}
]
2 changes: 1 addition & 1 deletion owl-top.opam
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ build: [
]

depends: [
"ocaml" {>= "4.10.0"}
"ocaml" {>= "4.12.0"}
"dune" {>= "2.0.0"}
"ocaml-compiler-libs"
"owl" {= version}
Expand Down
2 changes: 1 addition & 1 deletion owl.opam
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ build: [
]

depends: [
"ocaml" {>= "4.10.0"}
"ocaml" {>= "4.12.0"}
"alcotest" {with-test}
"base" {build}
"base-bigarray"
Expand Down

0 comments on commit f8aeeea

Please sign in to comment.