Skip to content

Commit

Permalink
Release v1.5.0 (#113)
Browse files Browse the repository at this point in the history
* Update documentation for new release v1.5.0

* Fix typo
  • Loading branch information
Marc A. Anoma committed Feb 7, 2021
1 parent d338c7a commit bdd9a3d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/sphinx/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/v1.5.0.rst
.. include:: whatsnew/v1.4.1.rst
.. include:: whatsnew/v1.4.0.rst
.. include:: whatsnew/v1.3.0.rst
Expand Down
24 changes: 24 additions & 0 deletions docs/sphinx/whatsnew/v1.5.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.. _whatsnew_150:

v1.5.0 (February 7, 2021)
==========================

Enhancements
------------

* Add import check for shapely/geos (#110)
* Drop Python 2.7, 3.5, add Python 3.8 (#112)


Fix
---

* TsSegement was missing proper indexing (#102)
* Fix CI: restrict pvlib to <0.8.0 because of API break, reduce test length because of hanging CI (#112)

Contributors
------------

* Thomas Capelle (:ghuser:`tcapelle`)
* Kevin Anderson (:ghuser:`kanderso-nrel`)
* Marc Anoma (:ghuser:`anomam`)
5 changes: 2 additions & 3 deletions pvfactors/tests/test_geometry/test_timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ def test_ts_pvrow():
cut, df_inputs.shaded_length_front,
df_inputs.shaded_length_back)


#check segment index
# check segment index
assert len(ts_pvrow.front.list_segments) == 3
assert [s.index for s in ts_pvrow.front.list_segments] == [0,1,2]
assert [s.index for s in ts_pvrow.front.list_segments] == [0, 1, 2]

# Check timeseries length of front and back segments
for seg in ts_pvrow.front.list_segments:
Expand Down

0 comments on commit bdd9a3d

Please sign in to comment.