Skip to content

Commit

Permalink
v0.1.9 - trying to make travis deployment work
Browse files Browse the repository at this point in the history
  • Loading branch information
kpe committed Mar 16, 2019
1 parent cdc762f commit efb1be8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A type safe dictionary class in python.
LICENSE
-------

MIT. See `License File <https://github.com/kpe/params/blob/master/LICENSE.txt>`__.
MIT. See `License File <https://github.com/kpe/params/blob/master/LICENSE.txt>`_.

Install
-------
Expand All @@ -25,7 +25,7 @@ Install
Usage
-----

``Param`` instances are ``dict``s for which default values could be
``Param`` instances are ``dict`` s for which default values could be
provided as class level fields when subclassing `Params`.
Those default values could than be overridden in instances of the class,
by specifying the values in the constructor.
Expand All @@ -41,11 +41,11 @@ would raise an ``AttributeError``.
... param_a = 'a'
... param_b = True
>>> params=TestParams() # using defaults
>>> params=TestParams() ## using defaults
>>> params
{'param_a': 1, 'param_b': True}
>>> TestParams(param_a='c') # override param_a
>>> TestParams(param_a='c') ## override param_a
{'param_a': 'c', 'param_b': True}
>>> params.param_c
Expand All @@ -64,3 +64,4 @@ would raise an ``AttributeError``.
:target: https://coveralls.io/r/kpe/params
.. |Version Status| image:: https://badge.fury.io/py/py-params.svg
:target: https://badge.fury.io/py/py-params

2 changes: 1 addition & 1 deletion params/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

from .params import Params

__version__ = '0.1.7'
__version__ = '0.1.9'

0 comments on commit efb1be8

Please sign in to comment.