mirror of
https://github.com/c-cube/moonpool.git
synced 2025-12-05 19:00:33 -05:00
relax bound on picos to 0.5-0.6
This commit is contained in:
parent
6ab9a691bf
commit
e481c48fe5
5 changed files with 8 additions and 9 deletions
2
.github/workflows/gh-pages.yml
vendored
2
.github/workflows/gh-pages.yml
vendored
|
|
@ -20,7 +20,7 @@ jobs:
|
|||
allow-prerelease-opam: true
|
||||
|
||||
# temporary until it's in a release
|
||||
- run: opam pin https://github.com/ocaml-multicore/picos.git -y -n
|
||||
- run: opam pin picos 0.6 -y -n
|
||||
|
||||
- run: opam install odig moonpool moonpool-lwt moonpool-io
|
||||
|
||||
|
|
|
|||
3
.github/workflows/main.yml
vendored
3
.github/workflows/main.yml
vendored
|
|
@ -29,8 +29,7 @@ jobs:
|
|||
dune-cache: true
|
||||
allow-prerelease-opam: true
|
||||
|
||||
# temporary until it's in a release
|
||||
- run: opam pin https://github.com/ocaml-multicore/picos.git -y -n
|
||||
- run: opam pin picos 0.6 -y -n
|
||||
|
||||
- run: opam install -t moonpool moonpool-lwt moonpool-io --deps-only
|
||||
if: matrix.ocaml-compiler == '5.2'
|
||||
|
|
|
|||
|
|
@ -25,8 +25,8 @@
|
|||
(thread-local-storage (and (>= 0.2) (< 0.3)))
|
||||
(odoc :with-doc)
|
||||
(hmap :with-test)
|
||||
(picos (and (>= 0.5) (< 0.6)))
|
||||
(picos_std (and (>= 0.5) (< 0.6)))
|
||||
(picos (and (>= 0.5) (< 0.7)))
|
||||
(picos_std (and (>= 0.5) (< 0.7)))
|
||||
(mdx
|
||||
(and
|
||||
(>= 1.9.0)
|
||||
|
|
@ -56,7 +56,7 @@
|
|||
(allow_empty) ; on < 5.0
|
||||
(depends
|
||||
(moonpool (= :version))
|
||||
(picos_io (and (>= 0.5) (< 0.6)))
|
||||
(picos_io (and (>= 0.5) (< 0.7)))
|
||||
(ocaml (>= 5.0))
|
||||
(trace :with-test)
|
||||
(trace-tef :with-test)
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ bug-reports: "https://github.com/c-cube/moonpool/issues"
|
|||
depends: [
|
||||
"dune" {>= "3.0"}
|
||||
"moonpool" {= version}
|
||||
"picos_io" {>= "0.5" & < "0.6"}
|
||||
"picos_io" {>= "0.5" & < "0.7"}
|
||||
"ocaml" {>= "5.0"}
|
||||
"trace" {with-test}
|
||||
"trace-tef" {with-test}
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ depends: [
|
|||
"thread-local-storage" {>= "0.2" & < "0.3"}
|
||||
"odoc" {with-doc}
|
||||
"hmap" {with-test}
|
||||
"picos" {>= "0.5" & < "0.6"}
|
||||
"picos_std" {>= "0.5" & < "0.6"}
|
||||
"picos" {>= "0.5" & < "0.7"}
|
||||
"picos_std" {>= "0.5" & < "0.7"}
|
||||
"mdx" {>= "1.9.0" & with-test}
|
||||
]
|
||||
depopts: [
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue