Skip to content

Commit 8ef69c9

Browse files
authored
Merge pull request #107 from mbarbin/clean-up-opam-dev-constraints
Simplify opam dev dependencies
2 parents b060b6e + 7ab3094 commit 8ef69c9

File tree

3 files changed

+6
-27
lines changed

3 files changed

+6
-27
lines changed

dune-project

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -328,20 +328,12 @@
328328
(and
329329
(>= 5.2)
330330
(< 5.4~)))
331-
(ocamlformat
332-
(and
333-
:with-dev-setup
334-
(= 0.27.0)))
335331
(astring
336332
(>= 0.8.5))
337333
(base
338334
(>= v0.17))
339335
(base_quickcheck
340336
(>= v0.17))
341-
(bisect_ppx
342-
(and
343-
:with-dev-setup
344-
(>= 2.8.3)))
345337
(bitv
346338
(>= 2.1))
347339
(cmdlang
@@ -388,10 +380,6 @@
388380
(>= v0.17))
389381
(ppx_here
390382
(>= v0.17))
391-
(ppx_js_style
392-
(and
393-
:with-dev-setup
394-
(>= v0.17)))
395383
(ppx_let
396384
(>= v0.17))
397385
(ppx_sexp_conv
@@ -446,19 +434,15 @@
446434
(>= 5.3)
447435
(< 5.4~)))
448436
(ocamlformat
449-
(and
450-
:with-dev-setup
451-
(= 0.27.0)))
437+
(= 0.27.0))
452438
(astring
453439
(>= 0.8.5))
454440
(base
455441
(>= v0.17))
456442
(base_quickcheck
457443
(>= v0.17))
458444
(bisect_ppx
459-
(and
460-
:with-dev-setup
461-
(>= 2.8.3)))
445+
(>= 2.8.3))
462446
(bitv
463447
(>= 2.1))
464448
(cmdlang
@@ -504,9 +488,7 @@
504488
(ppx_here
505489
(>= v0.17))
506490
(ppx_js_style
507-
(and
508-
:with-dev-setup
509-
(>= v0.17)))
491+
(>= v0.17))
510492
(ppx_let
511493
(>= v0.17))
512494
(ppx_sexp_conv

volgo-dev.opam

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ bug-reports: "https://github.com/mbarbin/vcs/issues"
1111
depends: [
1212
"dune" {>= "3.17"}
1313
"ocaml" {>= "5.3" & < "5.4~"}
14-
"ocamlformat" {with-dev-setup & = "0.27.0"}
14+
"ocamlformat" {= "0.27.0"}
1515
"astring" {>= "0.8.5"}
1616
"base" {>= "v0.17"}
1717
"base_quickcheck" {>= "v0.17"}
18-
"bisect_ppx" {with-dev-setup & >= "2.8.3"}
18+
"bisect_ppx" {>= "2.8.3"}
1919
"bitv" {>= "2.1"}
2020
"cmdlang" {>= "0.0.9"}
2121
"cmdlang-cmdliner-err-runner" {>= "0.0.16"}
@@ -38,7 +38,7 @@ depends: [
3838
"ppx_expect" {>= "v0.17"}
3939
"ppx_hash" {>= "v0.17"}
4040
"ppx_here" {>= "v0.17"}
41-
"ppx_js_style" {with-dev-setup & >= "v0.17"}
41+
"ppx_js_style" {>= "v0.17"}
4242
"ppx_let" {>= "v0.17"}
4343
"ppx_sexp_conv" {>= "v0.17"}
4444
"ppx_sexp_message" {>= "v0.17"}

volgo-tests.opam

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,9 @@ bug-reports: "https://github.com/mbarbin/vcs/issues"
1010
depends: [
1111
"dune" {>= "3.17"}
1212
"ocaml" {>= "5.2" & < "5.4~"}
13-
"ocamlformat" {with-dev-setup & = "0.27.0"}
1413
"astring" {>= "0.8.5"}
1514
"base" {>= "v0.17"}
1615
"base_quickcheck" {>= "v0.17"}
17-
"bisect_ppx" {with-dev-setup & >= "2.8.3"}
1816
"bitv" {>= "2.1"}
1917
"cmdlang" {>= "0.0.9"}
2018
"cmdlang-cmdliner-err-runner" {>= "0.0.16"}
@@ -37,7 +35,6 @@ depends: [
3735
"ppx_expect" {>= "v0.17"}
3836
"ppx_hash" {>= "v0.17"}
3937
"ppx_here" {>= "v0.17"}
40-
"ppx_js_style" {with-dev-setup & >= "v0.17"}
4138
"ppx_let" {>= "v0.17"}
4239
"ppx_sexp_conv" {>= "v0.17"}
4340
"ppx_sexp_message" {>= "v0.17"}

0 commit comments

Comments
 (0)