Skip to content

Commit 1529188

Browse files
committed
Merge pull request #150 from alorenzo175/versioneer
added versioneer for versioning
2 parents d0f47c7 + 0b0d2be commit 1529188

File tree

9 files changed

+2292
-10
lines changed

9 files changed

+2292
-10
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pvlib/version.py export-subst

MANIFEST.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#include *.txt
2+
include versioneer.py
3+
include pvlib/_version.py
24
recursive-include pvlib/data *
35
include README.md
46
include pvlib/spa_c_files/*.h
57

6-
#recursive-include docs *.txt
8+
#recursive-include docs *.txt

docs/sphinx/source/whatsnew/v0.3.1.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,29 @@ We recommend that all users upgrade to this version.
1010
Enhancements
1111
~~~~~~~~~~~~
1212

13+
* Added versioneer to keep track of version changes instead
14+
of manually updating pvlib/version.py. This will aid
15+
developers because the version string includes the specific
16+
git commit of the library code currently imported.
1317

1418

1519
Bug fixes
1620
~~~~~~~~~
1721

1822
* Fixes night tare issue in snlinverter. When the DC input power (p_dc)
1923
to an inverter is below the inversion startup power (Ps0), the model
20-
should set the AC output (ac_power) to the night tare value (Pnt).
24+
should set the AC output (ac_power) to the night tare value (Pnt).
2125
The night tare power indicates the power consumed by the inverter to
2226
sense PV array voltage. The model was erroneously comparing Ps0 with
2327
the AC output power (ac_power), rather than the DC input power (p_dc).
2428

2529
* Fixed the azimuth calculation of rotated PV panel in function
2630
pvlib.tracking.singleaxis(...) so that the results are consistent
2731
with PVsyst
32+
2833
Contributors
2934
~~~~~~~~~~~~
3035

3136
* ejmiller2
3237
* Yudong Ma
38+
* Tony Lorenzo

pvlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
from pvlib import tracking
1212
from pvlib import pvsystem
1313
from pvlib import spa
14-
from pvlib import modelchain
14+
from pvlib import modelchain

0 commit comments

Comments
 (0)