From 91b58252aec8ed2448726a59833930380ce9cdf3 Mon Sep 17 00:00:00 2001 From: kurt Date: Tue, 11 Feb 2025 14:44:34 -0800 Subject: [PATCH 1/2] add transformer to __init__.py --- pvlib/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pvlib/__init__.py b/pvlib/__init__.py index b5b07866a4..3e6e56b817 100644 --- a/pvlib/__init__.py +++ b/pvlib/__init__.py @@ -27,4 +27,5 @@ temperature, tools, tracking, + transformer, ) From a2d1808cc036e5123b99c3603b5a08bb550ebbc3 Mon Sep 17 00:00:00 2001 From: kurt Date: Tue, 11 Feb 2025 15:02:19 -0800 Subject: [PATCH 2/2] update whatsnew --- docs/sphinx/source/whatsnew/v0.11.3.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/sphinx/source/whatsnew/v0.11.3.rst b/docs/sphinx/source/whatsnew/v0.11.3.rst index 5a847c01de..2d4e706f37 100644 --- a/docs/sphinx/source/whatsnew/v0.11.3.rst +++ b/docs/sphinx/source/whatsnew/v0.11.3.rst @@ -12,6 +12,8 @@ Enhancements ~~~~~~~~~~~~ * Fix a bug in :py:func:`pvlib.bifacial.get_irradiance_poa` which may have yielded non-zero ground irradiance when the sun was below the horizon. (:issue:`2245`, :pull:`2359`) +* Fix a bug where :py:func:`pvlib.transformer.simple_efficiency` could only be imported + using the `from pvlib.transformer` syntax (:pull:`2388`) Documentation ~~~~~~~~~~~~~ @@ -40,3 +42,4 @@ Contributors * Mark Campanelli (:ghuser:`markcampanelli`) * Jason Lun Leung (:ghuser:`jason-rpkt`) * Manoj K S (:ghuser:`manojks1999`) +* Kurt Rhee (:ghuser:`kurt-rhee`)