Package Release Info

python-param-1.6.0-bp151.3.1

Update Info: Base Release
Available in Package Hub : 15 SP1

platforms

AArch64
ppc64le
s390x
x86-64

subpackages

python2-param
python3-param

Change Logs

Version: 1.6.0-bp150.2.4
* Wed Apr 18 2018 toddrme2178@gmail.com
- Update to version 1.6.0
  * Drop Cython build
* Thu Aug 17 2017 toddrme2178@gmail.com
- Implement single-spec version
- Update to version 1.5.1
  * Fixed error messages for ClassSelector with tuple of classes
  * Added get and contains methods for ParamOverrides
- Update to version 1.5.0
  * Added Range, Color, and Date parameters
  * Improved ObjectSelector error messages
  * Minor bugfixes
* Tue Oct 25 2016 toddrme2178@gmail.com
- Update to version 1.4.2:
  * Improved version reporting from version module
  * Minor bugfixes
- update to version 1.4.1:
  * Changed Selector parameters to respect order of provided options
  * Allow softbounds to be accessed like an attribute
- update to version 1.4.0:
  * Improved import ordering in parameterized.py
  * Fixed problematic travis shield link
  * Added 1.3.2 release notes
  * Add pypy to .travis.yml
  * Updated badge definitions to point to working URLS
  * Added optional support for setuptools in setup.py
  * Removed out-of-date pyflakes ignore (imports are used).  69d00b5
  * Added flake8 to travis config (and for now, output does not affect...
  * flake8: ignore rule about white space after comma
  * Fixed the 'python versions' shield.
  * Enabled cythonizing of param modules if Cython is available
  * Removed testing of Python 3.2 from travis.yml
  * Added shared_parameters context manager
  * Added unit test for shared_parameters context manager
  * Skip processing non-parameterized classes in setup_param
  * Update index.rst
  * Fixed formatting in docs
  * Fixed date in docs
  * Fixed typo in docs
  * Cleaned up get_range 6942b4f
  * Fixed formatting of print_param_defaults under Python2.7 and
    Python3
  * Added new Parameter types from the paramnb project
  * Fixed previous commit for Python2.6 compatibility
  * Fixed tests for python2.6 compatibility
  * commit_count can now be set via the Version constructor
  * Updated docstring of param.Version constructor
* Fri Jul 10 2015 toddrme2178@gmail.com
- update to version 1.3.2:
  * Updated unit test of ParamPager in the param IPython extension
  * Suppressing default parameter object names from the ParamPager
    title
  * Made _get_param_info and _param_docstrings methods of Pager public
  * Unicode support for param.String
  * Added shield displaying all supported Python versions
  * Added check for default value of String
  * Minor fix to logging: python loggers can accept keyword arguments.
  * Fixed Pyflakes errors
  * Fixed trailing whitespaces
* Fri Apr 10 2015 toddrme2178@gmail.com
- update to version 1.3.1:
  * Minor bugfix release to restore pre-1.3.0 script_repr behavior
    (accidentally changed in 1.3.0) and to fix issues with logging.
  * Param’s logging interface now matches that of Python’s logging
    module, making it simpler to use logging (see Python’s logging
    module for details). Note therefore that Param’s logging methods
    (a) no longer call functions that are passed as arguments
    (instead, Python’s logging module does lazy string merges), and
    (b) no longer automatically combine strings passed as arguments
    (instead, Python’s logging module supports string formatting).
- update to version 1.3.0:
  * Added ‘allow_None’ support to all Parameters. Any subclass of
    Parameter that checks types and/or values should be modified to
    add appropriate handling of allow_None.
  * Improved pretty printing (script_repr) of Parameterized instances,
    and made available via the pprint method. The script_repr name
    will be removed in a future release.
  * Added (reproducible) time-dependent random streams
    (numbergen.TimeAwareRandomState).
  * Added label and unit parameters to param.Time class.
  * Improved optional IPython extension.
* Mon Jul 14 2014 toddrme2178@gmail.com
- Initial version