Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python39-param-2.0.2-1.1 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: python39-param Distribution: openSUSE:Factory:zSystems
Version: 2.0.2 Vendor: openSUSE
Release: 1.1 Build date: Sun Jan 21 23:22:07 2024
Group: Development/Languages/Python Build host: s390zl28
Size: 979176 Source RPM: python-param-2.0.2-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://param.holoviz.org/index.html
Summary: Declarative Python programming using Parameters
Param is a library providing Parameters: Python attributes extended to
have features such as type and range checking, dynamically generated
values, documentation strings, default values, etc., each of which is
inherited from parent classes if not specified in a subclass.

Param contains only two required Python files, with no external
dependencies, and is provided freely for both non-commercial and
commercial use under a BSD license, so that it can easily be included
as part of other projects.

Provides

Requires

License

BSD-3-Clause

Changelog

* Sat Jan 20 2024 Dirk Müller <dmueller@suse.com>
  - update to 2.0.2:
    * Minor optimizations in hot codepaths accessing class parameters
    * Unpack partial callables in iscoroutinefunction
    * Fix building Param with setuptools-scm<7
* Fri Dec 15 2023 Atri Bhattacharya <badshah400@gmail.com>
  - Update to version 2.0.1:
    * Do not install doc folder in site-packages
      (gh#holoviz/param#878).
    * Drop the feather-format test dependency
      (gh#holoviz/param#879).
    * Add tables to the tests-deser extra (gh#holoviz/param#880).
    * Fix _state_push and _state_pop (gh#holoviz/param#884).
    * Don’t import setuptools_scm if the .git folder doesn’t exist
      (gh#holoviz/param#885).
  - Update URL tag in specfile.
  - Drop old macro redefinition that is no longer needed.
* Tue Oct 24 2023 Markéta Machová <mmachova@suse.com>
  - Update to 2.0.0
    * Parameter slot values are now all inherited correctly across
      a hierarchy of Parameterized classes.
    * There is now a ListProxy wrapper around Selector.objects (with
      forward and backward compatibility) to easily update objects
      and watch objects updates.
    * Parameterized classes and instances now have a rich HTML
      representation that is displayed automatically in
      a Jupyter/IPython notebook.
    * Parameters have all gained the allow_refs and nested_refs
      attributes, bringing an exceptionally useful feature that was
      available in Panel since version 1.2 to Param.
    * Experimental new rx reactive expressions.
    * You can now use .param.update as a context manager for applying
      temporary updates.
    * For speed, only generate the Parameter docstring in an IPython context.
    * Support for deserialization of file types into Array and DataFrame.
    * Integer now accepts numpy.integer values.
    * Range now does stricter validation of the slot values.
    * Path now has check_exists attribute, leading it to raise an error
      if path is not found on parameter instantiation.
    * Add top-level __all__ and move Parameter classes to parameters.py.
    * Now compatible with Python 3.8+
    * Other changes, take a look at the upstream changelog.
* Sun Mar 26 2023 Dirk Müller <dmueller@suse.com>
  - update to 1.13.0:
    * This release includes a new `Bytes` *Parameter* and a few
      important bug fixes. This release is also marked by the
      adoption of a formal project governance, ensuring Param's
      future as a healthy open-source project. Many thanks to
      @ovidner and @droumis for their first contributions! And to
      @maximlt, @Hoxbro, @jlstevens, @philippjfr and @jbednar for
      their continuing support to fixing and improving Param.
    * Fix copying when having watchers on e.g. bounds on inherited
      Parameter types (#675)
    * Allow JSON serialization to work with `json.dumps` (#655)
    * `ListSelector` restricted to `list` type objects (#531)
    * Fix `depends` async wrapper (#684)
    * Allow named colors to be any case (#711)
* Tue Dec 13 2022 Yogalakshmi Arunachalam <yarunachalam@suse.com>
  - Update to version 1.12.3:
    The 1.12.3 release adds support for Python 3.11. Many thanks to @musicinmybrain (first contribution!) and @maximlt for contributing to this release.
    Enhancements:
    * Preserve existing Random seed behavior in Python 3.11 (#638)
    * Add support for Python 3.11 (#658)
* Wed Jun 22 2022 Atri Bhattacharya <badshah400@gmail.com>
  - Update to version 1.12.2:
    * Match against complete spec name when determining dynamic
      watchers (gh#holoviz/param#615).
    * Ensure async functionality does not cause python2 syntax
      errors (gh#holoviz/param#624).
    * Allow (de)serializing CalendarRange and DateRange Parameters
      (gh#holoviz/param#625).
    * Improve DateRange validation (gh#holoviz/param#627).
    * Fix regression in @param.depends execution ordering
      (gh#holoviz/param#628).
    * Ensure named_objs does not fail on unhashable objects
      (gh#holoviz/param#632).
    * Support comparing date-like objects (gh#holoviz/param#629).
    * Fixed BinaryPower example in the docs to use the correct name
      EvenInteger(gh#holoviz/param#634).
* Sun May 01 2022 Atri Bhattacharya <badshah400@gmail.com>
  - Update to version 1.12.1:
    * Fixed description of shared_parameters (gh#holoviz/param#568).
    * Improve the error messages of Date and DateRange
      (gh#holoviz/param#579).
    * Clarified step error messages and other docs and links
      (gh#holoviz/param#604).
    * Make iscoroutinefunction more robust (gh#holoviz/param#572).
    * Fix for handling misspelled parameter (gh#holoviz/param#575).
    * Handle None serialization for Date, CalendarDate, Tuple,
      Array, and DataFrame (gh#holoviz/param#582).
    * Support async coroutines in param.depends
      (gh#holoviz/param#591).
    * Handle async functions in depends with watch=True
      (gh#holoviz/param#611).
    * Avoid equality check on Watcher (gh#holoviz/param#612).
    * Fix binder (gh#holoviz/param#564).
    * Fixed description of shared_parameters (gh#holoviz/param#568).
* Tue Feb 15 2022 Atri Bhattacharya <badshah400@gmail.com>
  - Update to version 1.12.0:
    * Many changes, see
      https://github.com/holoviz/param/releases/tag/v1.12.0.
  - Drop denose.patch: Tests updated to use pytest
    (gh#holoviz/param#509).
* Fri Feb 26 2021 Ben Greiner <code@bnavigator.de>
  - Don't test optional numpy with python36, but include optional
    jsonschema and (non python36) pandas for testing instead.
* Fri Jan 29 2021 Steve Kowalik <steven.kowalik@suse.com>
  - Remove %ifpython3 guard for the %check section.
* Sun Jan 10 2021 Atri Bhattacharya <badshah400@gmail.com>
  - Update to version 1.10.1:
    * Fix serialization of Tuple (gh#holoviz/param#446).
    * Declare asynchronous executor (gh#holoviz/param#449).
  - Use param-%{version} format for source name.
* Sun Jan 03 2021 Benjamin Greiner <code@bnavigator.de>
  - Make sure the correct version is reported, even though we use
    the GitHub archive and are not installing a git repo.

Files

/usr/lib/python3.9/site-packages/numbergen
/usr/lib/python3.9/site-packages/numbergen/__init__.py
/usr/lib/python3.9/site-packages/numbergen/__pycache__
/usr/lib/python3.9/site-packages/numbergen/__pycache__/__init__.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/numbergen/__pycache__/__init__.cpython-39.pyc
/usr/lib/python3.9/site-packages/param
/usr/lib/python3.9/site-packages/param-2.0.2.dist-info
/usr/lib/python3.9/site-packages/param-2.0.2.dist-info/INSTALLER
/usr/lib/python3.9/site-packages/param-2.0.2.dist-info/METADATA
/usr/lib/python3.9/site-packages/param-2.0.2.dist-info/RECORD
/usr/lib/python3.9/site-packages/param-2.0.2.dist-info/REQUESTED
/usr/lib/python3.9/site-packages/param-2.0.2.dist-info/WHEEL
/usr/lib/python3.9/site-packages/param-2.0.2.dist-info/licenses
/usr/lib/python3.9/site-packages/param-2.0.2.dist-info/licenses/LICENSE.txt
/usr/lib/python3.9/site-packages/param/.version
/usr/lib/python3.9/site-packages/param/__init__.py
/usr/lib/python3.9/site-packages/param/__pycache__
/usr/lib/python3.9/site-packages/param/__pycache__/__init__.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/__init__.cpython-39.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/_utils.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/_utils.cpython-39.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/_version.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/_version.cpython-39.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/depends.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/depends.cpython-39.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/display.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/display.cpython-39.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/ipython.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/ipython.cpython-39.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/parameterized.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/parameterized.cpython-39.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/parameters.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/parameters.cpython-39.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/reactive.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/reactive.cpython-39.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/serializer.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/serializer.cpython-39.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/version.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/param/__pycache__/version.cpython-39.pyc
/usr/lib/python3.9/site-packages/param/_utils.py
/usr/lib/python3.9/site-packages/param/_version.py
/usr/lib/python3.9/site-packages/param/depends.py
/usr/lib/python3.9/site-packages/param/display.py
/usr/lib/python3.9/site-packages/param/ipython.py
/usr/lib/python3.9/site-packages/param/parameterized.py
/usr/lib/python3.9/site-packages/param/parameters.py
/usr/lib/python3.9/site-packages/param/reactive.py
/usr/lib/python3.9/site-packages/param/serializer.py
/usr/lib/python3.9/site-packages/param/version.py
/usr/share/doc/packages/python39-param
/usr/share/doc/packages/python39-param/README.md
/usr/share/licenses/python39-param
/usr/share/licenses/python39-param/LICENSE.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 12:43:14 2024