From 47568e70bd403e7eaa2afc895297c711cec4e278 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Tue, 5 Sep 2023 18:11:22 -0400 Subject: [PATCH] Migrate from deprecated `pdm-pep517` to `pdm-backend` for build --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index aa5e0f1..516bdb2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ description = "" authors = [ {name = "Adam Goldsmith", email = "adam@adamgoldsmith.name"}, ] -license = "MIT" +license = {text = "MIT"} dependencies = [ "discord-py~=2.2", "aiohttp~=3.8", @@ -25,8 +25,8 @@ format = [ ] [build-system] -requires = ["pdm-pep517>=0.12.0"] -build-backend = "pdm.pep517.api" +requires = ["pdm-backend"] +build-backend = "pdm.backend" [tool.black]