Skip to content

update whats new for #844 and other contributors #851

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jan 18, 2020
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ pvlib/spa_c_files/spa_tester.c
# generated documentation
docs/sphinx/source/generated
docs/sphinx/source/savefig
docs/sphinx/source/auto_examples

# Installer logs
pip-log.txt
Expand Down
4 changes: 3 additions & 1 deletion docs/sphinx/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,8 @@ PVWatts model
pvsystem.pvwatts_losses

Functions for fitting diode models
-------------------------------
----------------------------------

.. autosummary::
:toctree: generated/

Expand All @@ -309,6 +310,7 @@ Functions for fitting diode models

Losses
------

.. autosummary::
:toctree: generated/

Expand Down
15 changes: 9 additions & 6 deletions docs/sphinx/source/whatsnew/v0.7.1.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
.. _whatsnew_0710:

v0.7.1 (MONTH DAY, YEAR)
------------------------


API Changes
~~~~~~~~~~~
v0.7.1 (January 17, 2020)
-------------------------

Enhancements
~~~~~~~~~~~~
Expand All @@ -15,6 +11,7 @@ Enhancements
* Added `leap_day` parameter to `iotools.get_psm3` instead of hardcoding it as
False.
* Added :py:func:`~pvlib.iotools.get_pvgis_tmy` to get PVGIS TMY datasets.
(:pull:`845`)
* Added :py:func:`~pvlib.iotools.parse_epw` to parse a file-like buffer
containing weather data in the EPW format.
* Added a new module `pvlib.losses` for various loss models.
Expand All @@ -23,6 +20,8 @@ Enhancements

Bug fixes
~~~~~~~~~
* Fix error in logic for emitting deprecation warning in
:py:func:`~pvlib.pvsystem.sapm` (:pull:`844`)
* Changed the PSM3 API endpoint for TMY requests in `iotools.get_psm3`.

Testing
Expand All @@ -42,4 +41,8 @@ Contributors
~~~~~~~~~~~~
* Kevin Anderson (:ghuser:`kanderso-nrel`)
* Mark Mikofski (:ghuser:`mikofski`)
* :ghuser:`dzimmanck`
* Will Holmgren (:ghuser:`wholmgren`)
* Cliff Hansen (:ghuser:`cwhanse`)
* Valliappan CA (:ghuser:`nappaillav`)
* Anton Driesse (:ghuser:`adriesse`)
4 changes: 2 additions & 2 deletions pvlib/iotools/epw.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


def read_epw(filename, coerce_year=None):
'''
r'''
Read an EPW file in to a pandas dataframe.

Note that values contained in the metadata dictionary are unchanged
Expand Down Expand Up @@ -179,7 +179,7 @@ def read_epw(filename, coerce_year=None):
| precipitable_water | Total precipitable water contained in a |
| | column of unit cross section from earth |
| | to top of atmosphere, cm. Note that some|
| | old *_TMY3.epw files may have incorrect |
| | old \*_TMY3.epw files may have incorrect|
| | unit if it was retrieved from |
| | www.energyplus.net. |
+-------------------------------+-----------------------------------------+
Expand Down