Skip to content
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 .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ RUN apt-get update && \
USER vscode
WORKDIR /home/vscode

RUN curl https://elan.lean-lang.org/elan-init.sh -sSf | sh -s -- -y --default-toolchain leanprover/lean4:4.26.0-rc2
RUN curl https://elan.lean-lang.org/elan-init.sh -sSf | sh -s -- -y --default-toolchain leanprover/lean4:4.26.0
ENV PATH="/home/vscode/.elan/bin:${PATH}"
5 changes: 4 additions & 1 deletion Project/Example.lean
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Mathlib.Data.Nat.Prime.Factorial
import Mathlib.Data.Nat.Factorial.Basic
import Mathlib.Data.Nat.Prime.Defs

namespace Example

Expand Down Expand Up @@ -26,3 +27,5 @@ theorem infinitely_many_primes : ∀ n : ℕ, ∃ p : ℕ, n < p ∧ Nat.Prime p
exact ⟨p, np, pp⟩

end Example

#min_imports
24 changes: 12 additions & 12 deletions lake-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
"type": "git",
"subDir": null,
"scope": "leanprover-community",
"rev": "d5c9558e75342a10d6321e6a8c798a14f68ae23c",
"rev": "2df2f0150c275ad53cb3c90f7c98ec15a56a1a67",
"name": "mathlib",
"manifestFile": "lake-manifest.json",
"inputRev": "v4.26.0-rc2",
"inputRev": "v4.26.0",
"inherited": false,
"configFile": "lakefile.lean"},
{"url": "https://github.com/leanprover-community/plausible",
"type": "git",
"subDir": null,
"scope": "leanprover-community",
"rev": "74835c84b38e4070b8240a063c6417c767e551ae",
"rev": "160af9e8e7d4ae448f3c92edcc5b6a8522453f11",
"name": "plausible",
"manifestFile": "lake-manifest.json",
"inputRev": "main",
Expand All @@ -25,7 +25,7 @@
"type": "git",
"subDir": null,
"scope": "leanprover-community",
"rev": "2ed4ba69b6127de8f5c2af83cccacd3c988b06bf",
"rev": "3591c3f664ac3719c4c86e4483e21e228707bfa2",
"name": "LeanSearchClient",
"manifestFile": "lake-manifest.json",
"inputRev": "main",
Expand All @@ -35,7 +35,7 @@
"type": "git",
"subDir": null,
"scope": "leanprover-community",
"rev": "6e3bb4bf31f731ab28891fe229eb347ec7d5dad3",
"rev": "e9f31324f15ead11048b1443e62c5deaddd055d2",
"name": "importGraph",
"manifestFile": "lake-manifest.json",
"inputRev": "main",
Expand All @@ -45,17 +45,17 @@
"type": "git",
"subDir": null,
"scope": "leanprover-community",
"rev": "2aaad968dd10a168b644b6a5afd4b92496af4710",
"rev": "b4fb2aa5290ebf61bc5f80a5375ba642f0a49192",
"name": "proofwidgets",
"manifestFile": "lake-manifest.json",
"inputRev": "v0.0.82",
"inputRev": "v0.0.83",
"inherited": true,
"configFile": "lakefile.lean"},
{"url": "https://github.com/leanprover-community/aesop",
"type": "git",
"subDir": null,
"scope": "leanprover-community",
"rev": "9c70abdd9215b76019340fad65138e2e8d21843e",
"rev": "2f6d238744c4cb07fdc91240feaf5d4221a27931",
"name": "aesop",
"manifestFile": "lake-manifest.json",
"inputRev": "master",
Expand All @@ -65,7 +65,7 @@
"type": "git",
"subDir": null,
"scope": "leanprover-community",
"rev": "a31845b5557fd5e47d52b9e2977a1b0eff3c38c3",
"rev": "9312503909aa8e8bb392530145cc1677a6298574",
"name": "Qq",
"manifestFile": "lake-manifest.json",
"inputRev": "master",
Expand All @@ -75,7 +75,7 @@
"type": "git",
"subDir": null,
"scope": "leanprover-community",
"rev": "afe9302d9243cee630b0be95322b38b90342ddbf",
"rev": "24241822ef9d3e7f6a3bcc53ad136e12663db8f3",
"name": "batteries",
"manifestFile": "lake-manifest.json",
"inputRev": "main",
Expand All @@ -85,10 +85,10 @@
"type": "git",
"subDir": null,
"scope": "leanprover",
"rev": "7e1ced9e049a4fab2508980ec4877ca9c46dffc9",
"rev": "933fce7e893f65969714c60cdb4bd8376786044e",
"name": "Cli",
"manifestFile": "lake-manifest.json",
"inputRev": "v4.26.0-rc2",
"inputRev": "v4.26.0",
"inherited": true,
"configFile": "lakefile.toml"}],
"name": "Project",
Expand Down
2 changes: 1 addition & 1 deletion lakefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ leanOptions = { warningAsError = true }
[[require]]
name = "mathlib"
scope = "leanprover-community"
rev = "v4.26.0-rc2"
rev = "v4.26.0"
2 changes: 1 addition & 1 deletion lean-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
leanprover/lean4:v4.26.0-rc2
leanprover/lean4:v4.26.0
Loading