Skip to content

Commit 9334136

Browse files
committed
Fix build system
1 parent 47d7a5b commit 9334136

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/testing.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ jobs:
5050
python-version: ${{ env.PYTHON_VERSION }}
5151
- name: Install dependencies
5252
run: |
53-
uv venv
5453
uv sync --frozen --all-extras
5554
uv run maturin build
5655
- name: mypy check
@@ -74,7 +73,6 @@ jobs:
7473
python-version: ${{ matrix.python-version }}
7574
- name: Install dependencies
7675
run: |
77-
uv venv
7876
uv sync --frozen --all-extras
7977
uv run maturin build
8078
- name: Run tests

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
2-
requires = ["hatchling"]
3-
build-backend = "hatchling.build"
2+
requires = ["maturin>=1.5,<2.0"]
3+
build-backend = "maturin"
44

55
[project]
66
name = "prelude-parser"

0 commit comments

Comments
 (0)