bump minimal OCaml version to 4.13

This commit is contained in:
Simon Cruanes 2024-08-29 13:08:51 -04:00
parent 21f34473b0
commit 40ed8f3cd2
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
3 changed files with 3 additions and 4 deletions

View file

@ -16,8 +16,7 @@ jobs:
os: os:
- ubuntu-latest - ubuntu-latest
ocaml-compiler: ocaml-compiler:
- '4.08' - '4.13'
- '4.14'
- '5.2' - '5.2'
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}

View file

@ -16,7 +16,7 @@
(name moonpool) (name moonpool)
(synopsis "Pools of threads supported by a pool of domains") (synopsis "Pools of threads supported by a pool of domains")
(depends (depends
(ocaml (>= 4.08)) (ocaml (>= 4.13))
dune dune
(either (>= 1.0)) (either (>= 1.0))
(trace :with-test) (trace :with-test)

View file

@ -9,7 +9,7 @@ tags: ["thread" "pool" "domain" "futures" "fork-join"]
homepage: "https://github.com/c-cube/moonpool" homepage: "https://github.com/c-cube/moonpool"
bug-reports: "https://github.com/c-cube/moonpool/issues" bug-reports: "https://github.com/c-cube/moonpool/issues"
depends: [ depends: [
"ocaml" {>= "4.08"} "ocaml" {>= "4.13"}
"dune" {>= "3.0"} "dune" {>= "3.0"}
"either" {>= "1.0"} "either" {>= "1.0"}
"trace" {with-test} "trace" {with-test}