I have found that the current description >= "0.13" && < "0.15" of the dependency upon core seems probably incorrect, by getting the following error when trying to upgrade satyrographos to 0.0.2.8 (i.e. the latest version):
This PR attempts to fix the constraint. According to the official documentation, Core.Option.try_with_join is available strictly since 0.14, not since 0.13:
Indeed, this modification seems to remedy the problem, as indicated by the success in opam pin add satyrographos 〈path/to/repository〉 on my local machine.
I have found that the current description
>= "0.13" && < "0.15"
of the dependency uponcore
seems probably incorrect, by getting the following error when trying to upgradesatyrographos
to0.0.2.8
(i.e. the latest version):This PR attempts to fix the constraint. According to the official documentation,
Core.Option.try_with_join
is available strictly since0.14
, not since0.13
:Indeed, this modification seems to remedy the problem, as indicated by the success in
opam pin add satyrographos 〈path/to/repository〉
on my local machine.I will appreciate any comments or suggestions.