Skip to content

Commit f8aeeea

Browse files
authored
.os.yml: drop support for 4.12, check also 5.2 (#682)
* 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
1 parent fc4a49c commit f8aeeea

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/os.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- ubuntu-latest
1616
# - windows-latest
1717
ocaml-compiler:
18+
- "5.2"
1819
- "5.1"
1920
- "4.14"
2021
- "4.12"
21-
- "4.10"
2222

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

owl-base.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ build: [
1414
]
1515

1616
depends: [
17-
"ocaml" {>= "4.10.0"}
17+
"ocaml" {>= "4.12.0"}
1818
"base-bigarray"
1919
"dune" {>= "2.0.0"}
2020
]

owl-top.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ build: [
1515
]
1616

1717
depends: [
18-
"ocaml" {>= "4.10.0"}
18+
"ocaml" {>= "4.12.0"}
1919
"dune" {>= "2.0.0"}
2020
"ocaml-compiler-libs"
2121
"owl" {= version}

owl.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ build: [
2222
]
2323

2424
depends: [
25-
"ocaml" {>= "4.10.0"}
25+
"ocaml" {>= "4.12.0"}
2626
"alcotest" {with-test}
2727
"base" {build}
2828
"base-bigarray"

0 commit comments

Comments
 (0)