Skip to content

Commit

Permalink
version v0.2.2 Balancing Act
Browse files Browse the repository at this point in the history
* update history in readme
* link to wiki, PyPI and releases on github
* add uncertainty wrapper requirements section in readme
* add license to
  • Loading branch information
mikofski committed Jul 21, 2016
1 parent 3aa9930 commit 656e0e8
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 8 deletions.
31 changes: 25 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,13 @@ Requirements
* `sphinx <https://sphinx-doc.org>`_
* `SciPy <http://www.scipy.org/scipylib/>`_
* `Python-Dateutil <https://dateutil.readthedocs.org/en/stable/>`_
* `UncertaintyWrapper <http://sunpower.github.io/UncertaintyWrapper/>`_

Installation
------------
You can use ``pip`` or ``distutils`` to install Carousel.
Carousel `releases are on PyPI <https://pypi.python.org/pypi/Carousel>`_ and on
`GitHub <https://github.com/SunPower/Carousel/releases>`_. You can use either
``pip`` or ``distutils`` to install Carousel.

`pip <https://pip.pypa.io/en/stable/>`_ ::

Expand All @@ -57,21 +60,37 @@ Contributions
Carousel `source code <https://github.com/SunPower/Carousel>`_ is
online. Fork it and report
`issues <https://github.com/SunPower/Carousel/issues>`_, make suggestions or
create pull requests.
create pull requests. Discuss the roadmap or download presentations on the
`wiki <https://github.com/SunPower/Carousel/wiki>`_

History
-------
This is the change log.

v0.2
~~~~
v0.2.2 2016-07-21
~~~~~~~~~~~~~~~~~
`Balancing Act <https://github.com/SunPower/Carousel/releases/tag/v0.2.2>`_:

* fixes #38 let data sources accept any kind of argument, not just filename
* fixes #39 allow data caching to be disabled
* fixes #40 use Meta class for options
* fixes #41 pass data to ``load_data()`` not reader

v0.2.1 2016-07-19
~~~~~~~~~~~~~~~~~
`Bumper Cars <https://github.com/SunPower/Carousel/releases/tag/v0.2.1>`_:

* fixes #37 pop ``data_reader`` from data source

v0.2 2016-05-03
~~~~~~~~~~~~~~~
`Big Top <https://github.com/SunPower/Carousel/releases/tag/v0.2>`_:

* documentation and tutorial with PV Power demo
* rename package Carousel

v0.1
~~~~
v0.1 2016-02-11
~~~~~~~~~~~~~~~
`Acrobats <https://github.com/SunPower/Carousel/releases/tag/v0.1>`_:

* quickstart script
4 changes: 2 additions & 2 deletions carousel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
__author__ = u'Mark Mikofski'
__email__ = u'mark.mikofski@sunpowercorp.com'
__url__ = u'https://github.com/SunPower/Carousel'
__version__ = u'0.2.1'
__release__ = u'Bumper Cars'
__version__ = u'0.2.2'
__release__ = u'Balancing Act'
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
'pint (>=0.7.2)', 'UncertaintyWrapper (>=0.4.1)', 'sphinx', 'nose',
'pandas', 'pytz', 'pvlib'
],
license='BSD 3-clause',
scripts=['carousel-quickstart.py'],
package_data={'carousel': [
'docs/conf.py', 'docs/*.rst', 'docs/Makefile', 'docs/make.bat'
Expand Down

0 comments on commit 656e0e8

Please sign in to comment.