Skip to content

Commit

Permalink
relax bound on picos to 0.5-0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Dec 4, 2024
1 parent 6ab9a69 commit e481c48
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
6 changes: 3 additions & 3 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion moonpool-io.opam
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
4 changes: 2 additions & 2 deletions moonpool.opam
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down

0 comments on commit e481c48

Please sign in to comment.