Skip to content

Commit

Permalink
PyPSA Version 0.7.1
Browse files Browse the repository at this point in the history
http://pypsa.org/doc/release_notes.html#pypsa-0-7-1-26th-november-2016

This release contains bug fixes, a minor new feature and more
warnings.

* The unix-only library ``resource`` is no longer imported by default,
  which was causing errors for Windows users.
* Bugs in the setting and getting of time-varying attributes for the
  object interface have been fixed.
* The ``Link`` attribute ``efficiency`` can now be make time-varying
  so that e.g. heat pump Coefficient of Performance (COP) can change
  over time due to ambient temperature variations (see the `heat pump
  example  <http://www.pypsa.org/examples/power-to-heat-water-tank.html>`_).
* ``network.snapshots`` is now cast to a ``pandas.Index``.
* There are new warnings, including when you attach components to
  non-existent buses.

Thanks to Marius Vespermann for promptly pointing out the ``resource``
bug.
  • Loading branch information
nworbmot committed Nov 26, 2016
1 parent 2c5785b commit ff91ae2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
# The short X.Y version.
version = u'0.7'
# The full version, including alpha/beta/rc tags.
release = u'0.7.0'
release = u'0.7.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
13 changes: 7 additions & 6 deletions doc/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,24 @@
Release Notes
#######################

PyPSA 0.7.1 (November 2016)
===========================
PyPSA 0.7.1 (26th November 2016)
================================

This release contains a bug fix, a minor new feature and more
This release contains bug fixes, a minor new feature and more
warnings.

* The unix-only library ``resource`` is no longer imported by default,
which was causing errors for Windows users.
* Bugs in the setting and getting of time-varying attributes for the
object interface have been fixed.
* The ``Link`` attribute ``efficiency`` can now be make time-varying
so that e.g. heat pump Coefficient of Performance (COP) can change
over time due to ambient temperature variations (see the `heat pump
example
<http://www.pypsa.org/examples/power-to-heat-water-tank.html>`_).
* Bugs in the setting and getting of time-varying attributes for the
object interface have been fixed.
* ``network.snapshots`` is now cast to a ``pandas.Index``.

* There are new warnings, including when you attach components to
non-existent buses.


Thanks to Marius Vespermann for promptly pointing out the ``resource``
Expand Down
2 changes: 1 addition & 1 deletion pypsa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@
import logging
logging.basicConfig(level=logging.INFO)

__version__ = "0.7.0"
__version__ = "0.7.1"
__author__ = "Tom Brown (FIAS), Jonas Hoersch (FIAS), David Schlachtberger (FIAS)"
__copyright__ = "Copyright 2015-2016 Tom Brown (FIAS), Jonas Hoersch (FIAS), David Schlachtberger (FIAS), GNU GPL 3"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name='pypsa',
version='0.7.0',
version='0.7.1',
author='Tom Brown (FIAS), Jonas Hoersch (FIAS), David Schlachtberger (FIAS)',
author_email='[email protected]',
description='Python for Power Systems Analysis',
Expand Down

0 comments on commit ff91ae2

Please sign in to comment.