Skip to content

Commit 0460eb8

Browse files
committed
comment out DeriveTraversable
1 parent 517b832 commit 0460eb8

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

Mathlib/Tactic/DeriveTraversable.lean

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ import Lean.Elab.Match
88
import Lean.Elab.Deriving.Basic
99
import Lean.Elab.PreDefinition.Main
1010

11+
/-
12+
#adaptation_note nightly-2025-09-11
13+
14+
This is broken on nightly-testing, but unused in Mathlib, so I am commenting it out for now.
15+
1116
/-!
1217
# Deriving handler for `Traversable` instances
1318
@@ -494,3 +499,5 @@ def lawfulTraversableDeriveHandler : DerivingHandler :=
494499
initialize registerDerivingHandler ``LawfulTraversable lawfulTraversableDeriveHandler
495500
496501
end Mathlib.Deriving.Traversable
502+
503+
-/

MathlibTest/Traversable.lean

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
import Mathlib.Tactic.DeriveTraversable
22
import Mathlib.Control.Traversable.Instances
33

4+
/-
5+
#adaptation_note nightly-2025-09-11
6+
7+
This is broken on nightly-testing, but unused in Mathlib, so I am commenting it out for now.
8+
49
set_option linter.style.commandStart false
510
611
namespace Testing
@@ -85,3 +90,5 @@ example : (ex.run []).2 = [1, 2, 3, 3, 2, 1] := rfl
8590
end
8691
8792
end Testing
93+
94+
-/

0 commit comments

Comments
 (0)