Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/sphinx/source/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ What's New

These are new features and improvements of note in each release.

.. include:: whatsnew/v0.3.2.txt
.. include:: whatsnew/v0.3.1.txt
.. include:: whatsnew/v0.3.0.txt
.. include:: whatsnew/v0.2.2.txt
Expand Down
18 changes: 18 additions & 0 deletions docs/sphinx/source/whatsnew/v0.3.2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
.. _whatsnew_0320:

v0.3.1 (May 3, 2016)
-----------------------

This is a minor release from 0.3.1.
We recommend that all users upgrade to this version.

Bug fixes
~~~~~~~~~

* Updates the SAM file URL. (:issue:`152`)


Contributors
~~~~~~~~~~~~

* Will Holmgren
2 changes: 1 addition & 1 deletion pvlib/pvsystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,7 @@ def retrieve_sam(name=None, samfile=None):

if name is not None:
name = name.lower()
base_url = 'https://sam.nrel.gov/sites/sam.nrel.gov/files/'
base_url = 'https://sam.nrel.gov/sites/default/files/'
if name == 'cecmod':
url = base_url + 'sam-library-cec-modules-2015-6-30.csv'
elif name == 'sandiamod':
Expand Down