From 2150b9a8eea4355656d91f57c54c5021b34ceeae Mon Sep 17 00:00:00 2001 From: Blair Bonnett Date: Tue, 31 Dec 2024 13:17:54 +0100 Subject: [PATCH] Switch build backend to pdm-backend. The pdm-pep517 project was renamed to pdm-backend. I think based on the migration guide at https://backend.pdm-project.org/migration/ the only change that is required is to switch the backend. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d3e5531..9fd2d57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,8 +46,8 @@ Documentation = "https://python-plyfile.readthedocs.io" Repository = "https://github.com/dranjan/python-plyfile" [build-system] -requires = ["pdm-pep517>=1.0.0"] -build-backend = "pdm.pep517.api" +requires = ["pdm-backend"] +build-backend = "pdm.backend" [tool.pdm.scripts] test-quick = "pytest test -v"