From 46f041b8a03821c9f3a981bc8fe743e68fa08b0e Mon Sep 17 00:00:00 2001 From: Kevin Anderson Date: Wed, 16 Apr 2025 10:32:39 -0400 Subject: [PATCH 1/3] drop wheel; bump setuptools to >=70.1 setuptools 70.1.0 brought in the `bdist_wheel` command from `wheel`: https://setuptools.pypa.io/en/stable/history.html#v70-1-0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6929045b55..2d245cff94 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools>=61", "wheel", "setuptools_scm>=6.2"] +requires = ["setuptools>=70.1", "setuptools_scm>=6.2"] build-backend = "setuptools.build_meta" From 1d12105e383d0eaf086af3c016e3a1e9a2d5583f Mon Sep 17 00:00:00 2001 From: Kevin Anderson Date: Wed, 16 Apr 2025 10:47:00 -0400 Subject: [PATCH 2/3] whatsnew --- docs/sphinx/source/whatsnew/v0.12.1.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/sphinx/source/whatsnew/v0.12.1.rst b/docs/sphinx/source/whatsnew/v0.12.1.rst index 8c8c5d8452..876764b094 100644 --- a/docs/sphinx/source/whatsnew/v0.12.1.rst +++ b/docs/sphinx/source/whatsnew/v0.12.1.rst @@ -24,6 +24,10 @@ Documentation * Documented how `np.nan` values are handled by :py:func:`~pvlib.spectrum.average_photon_energy` (:issue:`2423`, :pull:`2426`) +Requirements +~~~~~~~~~~~~ +* ``wheel`` is no longer a required build dependency. (:pull:`2439`) + Testing ~~~~~~~ From 32333d1bbeb93ee1936fa8c1a643ddefa0204df7 Mon Sep 17 00:00:00 2001 From: Kevin Anderson Date: Wed, 16 Apr 2025 10:47:16 -0400 Subject: [PATCH 3/3] Update v0.12.1.rst --- docs/sphinx/source/whatsnew/v0.12.1.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sphinx/source/whatsnew/v0.12.1.rst b/docs/sphinx/source/whatsnew/v0.12.1.rst index 876764b094..2435ec59bc 100644 --- a/docs/sphinx/source/whatsnew/v0.12.1.rst +++ b/docs/sphinx/source/whatsnew/v0.12.1.rst @@ -26,7 +26,7 @@ Documentation Requirements ~~~~~~~~~~~~ -* ``wheel`` is no longer a required build dependency. (:pull:`2439`) +* ``wheel`` is no longer a build dependency. (:pull:`2439`) Testing ~~~~~~~