Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Relax ocaml compiler warning to allow ocaml-variants #290

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
`x-opam-monorepo-global-opam-vars` to make `lock` fully reproducible.
(#250, #253, @NathanReb)
- Show an error message when the solver can't find any version that satisfies
the requested version constraint in the user's OPAM file (#215, #248,
the requested version constraint in the user's OPAM file (#215, #248, #290
@Leonidas-from-XIV)
- Allow packages to be marked as being provided by Opam and not to be pulled by
`opam-monorepo`. To control this a new optional Opam file field,
Expand Down
2 changes: 1 addition & 1 deletion lib/config.ml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ let base_packages =
|> List.map ~f:OpamPackage.Name.of_string
|> OpamPackage.Name.Set.of_list

let compiler_package_name = OpamPackage.Name.of_string "ocaml-base-compiler"
let compiler_package_name = OpamPackage.Name.of_string "ocaml"

let duniverse_opam_repo =
"git+https://github.com/dune-universe/opam-overlays.git"
Expand Down