From: Kaliko Jack Date: Mon, 11 Nov 2024 08:57:27 +0000 (+0100) Subject: Fixed missing build-backend in pyproject.toml X-Git-Url: https://git.kaliko.me/?a=commitdiff_plain;h=b356e08367145802b9ee5a5a5e5339a4f03636a5;p=python-musicpd.git Fixed missing build-backend in pyproject.toml --- diff --git a/CHANGES.txt b/CHANGES.txt index 65bf841..c2da465 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,11 @@ python-musicpd Changes List =========================== +Changes in 0.9.2 +---------------- + + * Add missing build-backend in pyproject.toml + Changes in 0.9.1 ---------------- diff --git a/musicpd.py b/musicpd.py index 22d8d2b..2e82d4a 100644 --- a/musicpd.py +++ b/musicpd.py @@ -19,7 +19,7 @@ ERROR_PREFIX = "ACK " SUCCESS = "OK" NEXT = "list_OK" #: Module version -VERSION = '0.9.1' +VERSION = '0.9.2.dev1' #: Seconds before a connection attempt times out #: (overriden by :envvar:`MPD_TIMEOUT` env. var.) CONNECTION_TIMEOUT = 30 diff --git a/pyproject.toml b/pyproject.toml index a3f46bd..00c9be1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,7 @@ sphinx = ["Sphinx>=5.3.0"] [build-system] requires = ["setuptools>=61.0.0"] +build-backend = "setuptools.build_meta" [tool.setuptools] py-modules = ["musicpd"]