From ff4a8ab8fb9d58ea9c70003e048f403cc5190a5b34b4f90d3ca493b0705229c0 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sun, 30 Jun 2024 19:02:50 +0000 Subject: [PATCH] * More careful handling of the backend-path key from pyproject.toml. Previous versions would load the backend and then check that it was loaded from the specified path; the new version only loads it from the specified path. The BackendInvalid exception is now a synonym for :exc:`BackendUnavailable`, and code should move to using the latter name. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyproject-hooks?expand=0&rev=7 --- python-pyproject-hooks.changes | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/python-pyproject-hooks.changes b/python-pyproject-hooks.changes index fec3720..f087f56 100644 --- a/python-pyproject-hooks.changes +++ b/python-pyproject-hooks.changes @@ -9,11 +9,13 @@ Sat Jun 29 12:29:33 UTC 2024 - Dirk Müller - update to 1.1.0: * Add type annotations to the public API. - * More careful handling of the backend-path key from pyproject.toml. Previous - versions would load the backend and then check that it was loaded from the - specified path; the new version only loads it from the specified path. The - BackendInvalid exception is now a synonym for :exc:`BackendUnavailable`, - and code should move to using the latter name. + * More careful handling of the backend-path key from + pyproject.toml. Previous versions would load the backend and + then check that it was loaded from the specified path; the new + version only loads it from the specified path. The + BackendInvalid exception is now a synonym for + :exc:`BackendUnavailable`, and code should move to using the + latter name. ------------------------------------------------------------------- Fri Apr 21 12:31:09 UTC 2023 - Dirk Müller