Skip to content

Commit 8fb73a2

Browse files
authored
update whats new for #844 and other contributors (#851)
* update whats new for #844 and other contributors * rebase * epw docstring noqa fix * update whatsnew date * add anton. minor api.rst clean up * escape asterisk * add docs auto_examples to gitignore * pep8
1 parent 1b31636 commit 8fb73a2

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ pvlib/spa_c_files/spa_tester.c
4141
# generated documentation
4242
docs/sphinx/source/generated
4343
docs/sphinx/source/savefig
44+
docs/sphinx/source/auto_examples
4445

4546
# Installer logs
4647
pip-log.txt

docs/sphinx/source/api.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,8 @@ PVWatts model
299299
pvsystem.pvwatts_losses
300300

301301
Functions for fitting diode models
302-
-------------------------------
302+
----------------------------------
303+
303304
.. autosummary::
304305
:toctree: generated/
305306

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

310311
Losses
311312
------
313+
312314
.. autosummary::
313315
:toctree: generated/
314316

docs/sphinx/source/whatsnew/v0.7.1.rst

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
.. _whatsnew_0710:
22

3-
v0.7.1 (MONTH DAY, YEAR)
4-
------------------------
5-
6-
7-
API Changes
8-
~~~~~~~~~~~
3+
v0.7.1 (January 17, 2020)
4+
-------------------------
95

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

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

2827
Testing
@@ -42,4 +41,8 @@ Contributors
4241
~~~~~~~~~~~~
4342
* Kevin Anderson (:ghuser:`kanderso-nrel`)
4443
* Mark Mikofski (:ghuser:`mikofski`)
44+
* :ghuser:`dzimmanck`
45+
* Will Holmgren (:ghuser:`wholmgren`)
46+
* Cliff Hansen (:ghuser:`cwhanse`)
4547
* Valliappan CA (:ghuser:`nappaillav`)
48+
* Anton Driesse (:ghuser:`adriesse`)

pvlib/iotools/epw.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
def read_epw(filename, coerce_year=None):
11-
'''
11+
r'''
1212
Read an EPW file in to a pandas dataframe.
1313
1414
Note that values contained in the metadata dictionary are unchanged
@@ -179,7 +179,7 @@ def read_epw(filename, coerce_year=None):
179179
| precipitable_water | Total precipitable water contained in a |
180180
| | column of unit cross section from earth |
181181
| | to top of atmosphere, cm. Note that some|
182-
| | old *_TMY3.epw files may have incorrect |
182+
| | old \*_TMY3.epw files may have incorrect|
183183
| | unit if it was retrieved from |
184184
| | www.energyplus.net. |
185185
+-------------------------------+-----------------------------------------+

0 commit comments

Comments
 (0)