Skip to content
Open
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
3 changes: 2 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: |
set -o pipefail
curl -sSfL https://github.com/leanprover/elan/releases/download/v3.1.1/elan-x86_64-unknown-linux-gnu.tar.gz | tar xz
./elan-init -y --default-toolchain none
./elan-init -y --default-toolchain $(<src/lean-toolchain)
echo "$HOME/.elan/bin" >> "${GITHUB_PATH}"

- name: Install Lean
Expand All @@ -31,6 +31,7 @@ jobs:
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
elan default $(<src/lean-toolchain)
uv sync

- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion pantograph/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def test_version(self):
"""
NOTE: Update this after upstream updates.
"""
self.assertEqual(get_version(), "0.3.13")
self.assertEqual(get_version(), "0.3.14")

def test_server_init_del(self):
import warnings
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pantograph"
version = "0.3.13"
version = "0.3.14"
description = "A Machine-to-Machine Interaction System for Lean"
license = "Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src
Loading