Skip to content

added versioneer for versioning #150

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 1 commit into from
Apr 20, 2016
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 .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pvlib/version.py export-subst
4 changes: 3 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#include *.txt
include versioneer.py
include pvlib/_version.py
recursive-include pvlib/data *
include README.md
include pvlib/spa_c_files/*.h

#recursive-include docs *.txt
#recursive-include docs *.txt
8 changes: 7 additions & 1 deletion docs/sphinx/source/whatsnew/v0.3.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,29 @@ We recommend that all users upgrade to this version.
Enhancements
~~~~~~~~~~~~

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


Bug fixes
~~~~~~~~~

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

* Fixed the azimuth calculation of rotated PV panel in function
pvlib.tracking.singleaxis(...) so that the results are consistent
with PVsyst

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

* ejmiller2
* Yudong Ma
* Tony Lorenzo
2 changes: 1 addition & 1 deletion pvlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
from pvlib import tracking
from pvlib import pvsystem
from pvlib import spa
from pvlib import modelchain
from pvlib import modelchain
Loading