Skip to content

Commit da8215d

Browse files
committed
Bump mathlib
Signed-off-by: zeramorphic <[email protected]>
1 parent cca28dc commit da8215d

File tree

7 files changed

+53
-29
lines changed

7 files changed

+53
-29
lines changed

.github/workflows/push_main.yml

+44-9
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,6 @@ jobs:
4545
dot -Tpng -Gnewrank=true -Goverlaps=false -Gsplines=ortho depgraph.dot > depgraph.png
4646
dot -Tsvg -Gnewrank=true -Goverlaps=false -Gsplines=ortho depgraph.dot > depgraph.svg
4747
48-
# - name: build lean4checker
49-
# run: |
50-
# git clone https://github.com/leanprover/lean4checker
51-
# cd lean4checker
52-
# ~/.elan/bin/lake -Kenv=dev build
53-
54-
# - name: check environments using lean4checker
55-
# run: grep -h '^import ConNF.' ConNF/*.lean | sed 's/import //' | xargs -n 1 -P 8 ~/.elan/bin/lake -Kenv=dev env lean4checker/build/bin/lean4checker
56-
5748
- name: build documentation
5849
run: ~/.elan/bin/lake -Kenv=dev build ConNF:docs
5950

@@ -100,3 +91,47 @@ jobs:
10091

10192
- name: deploy website
10293
uses: actions/deploy-pages@v1
94+
95+
style_lint:
96+
name: Lint style
97+
runs-on: ubuntu-latest
98+
steps:
99+
- name: cleanup
100+
run: |
101+
find . -name . -o -prune -exec rm -rf -- {} +
102+
103+
- uses: actions/checkout@v4
104+
105+
- name: check case sensitivity
106+
uses: credfeto/[email protected]
107+
108+
- name: look for ignored files
109+
uses: credfeto/[email protected]
110+
111+
- name: check for lean files with the executable bit set
112+
shell: bash
113+
run: |
114+
executable_files="$(find . -name '*.lean' -type f \( -perm -u=x -o -perm -g=x -o -perm -o=x \))"
115+
if [[ -n "$executable_files" ]]
116+
then
117+
echo "ERROR: The following Lean files have the executable bit set."
118+
echo "$executable_files"
119+
exit 1
120+
fi
121+
122+
- name: install python
123+
if: ${{ 'ubuntu-latest' == 'ubuntu-latest' }}
124+
uses: actions/setup-python@v5
125+
with:
126+
python-version: 3.8
127+
128+
- name: install elan
129+
run: |
130+
set -o pipefail
131+
curl -sSfL https://github.com/leanprover/elan/releases/download/v3.1.1/elan-x86_64-unknown-linux-gnu.tar.gz | tar xz
132+
./elan-init -y --default-toolchain none
133+
echo "$HOME/.elan/bin" >> "${GITHUB_PATH}"
134+
135+
- name: run style linters
136+
run: |
137+
lake exe lint-style

.vscode/copyright.code-snippets

-13
This file was deleted.

.vscode/settings.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@
66
"files.eol": "\n",
77
"files.insertFinalNewline": true,
88
"files.trimFinalNewlines": true,
9-
"files.trimTrailingWhitespace": true,
10-
"search.usePCRE2": true
9+
"files.trimTrailingWhitespace": true
1110
}

ConNF.lean

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
def hello := "world"
1+
import ConNF.Basic

ConNF/Basic.lean

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
def hello := "world"

DependencyGraph.lean

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
import Mathlib.Data.ByteArray
2-
import Lean
1+
import Batteries.Tactic.PrintDependents
2+
import Mathlib.Data.List.Sort
3+
import Mathlib.Data.String.Basic
4+
import Mathlib.Util.AssertNoSorry
35
import ConNF
46

57
open Lean
@@ -58,7 +60,7 @@ elab "#deptree " : command => do
5860
-- source:
5961
-- https://leanprover.zulipchat.com/#narrow/stream/287929-mathlib4/topic/Counting.20prerequisites.20of.20a.20theorem/near/425370265
6062
def getVisited (env : Environment) (decl : Name) :=
61-
let (_, { visited, .. }) := Elab.Command.CollectAxioms.collect decl |>.run env |>.run {}
63+
let (_, { visited, .. }) := CollectAxioms.collect decl |>.run env |>.run {}
6264
visited.erase decl
6365

6466
partial def allDeclsIn (module : Name) : Elab.Command.CommandElabM (Array Name) := do

lake-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"type": "git",
6666
"subDir": null,
6767
"scope": "",
68-
"rev": "b3ae244300f97308f07d01ba948d345f354a1001",
68+
"rev": "9e23bfc012e95672d31d81958b4dce717a46c84d",
6969
"name": "mathlib",
7070
"manifestFile": "lake-manifest.json",
7171
"inputRev": null,

0 commit comments

Comments
 (0)