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

python3-patsy-0.5.1-bp153.1.16 RPM for noarch

From OpenSuSE Leap 15.3 for noarch

Name: python3-patsy Distribution: SUSE Linux Enterprise 15 SP3
Version: 0.5.1 Vendor: openSUSE
Release: bp153.1.16 Build date: Sat Mar 6 11:37:32 2021
Group: Development/Languages/Python Build host: goat07
Size: 1996768 Source RPM: python-patsy-0.5.1-bp153.1.16.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/pydata/patsy
Summary: A Python package for statistical models and design matrices
A Python package for describing statistical models and for
building design matrices.
It is closely inspired by and compatible with the 'formula'
mini-language used in `R <http://www.r-project.org/>`_ and
`S <https://secure.wikimedia.org/wikipedia/en/wiki/S_programming_language>`_.

Provides

Requires

License

BSD-2-Clause

Changelog

* Thu Nov 01 2018 Arun Persaud <arun@gmx.de>
  - specfile:
    * removed devel from noarch
  - update to version 0.5.1:
    * The Python 3.6.7 and 3.7.1 point releases changed the standard
      tokenizer module in a way that broke patsy. Updated patsy to work
      with these point releases. (See `#131
      <https://github.com/pydata/patsy/pull/131>`__ for details.)
* Thu Jan 11 2018 arun@gmx.de
  - specfile:
    * update copyirght year
  - update to version 0.5.0:
    * Dropped support for Python 2.6 and 3.3.
    * Update to keep up with "pandas" API changes
    * More consistent handling of degenerate linear constraints in
    * Fix a crash in "DesignMatrix.__repr__" when "shape[0] == 0"
* Sun May 08 2016 arun@gmx.de
  - specfile:
    * updated source url to files.pythonhosted.org
* Sat Nov 14 2015 arun@gmx.de
  - update to version 0.4.1:
    * On Python 2, accept "unicode" strings containing only ASCII
      characters as valid formula descriptions in the high-level formula
      API (:func:`dmatrix` and friends). This is intended as a
      convenience for people using Python 2 with "from __future__
      import unicode_literals". (See :ref:`py2-versus-py3`.)
    * Accept "long" as a valid integer type in the new
      :class:`DesignInfo` classes. In particular this fixes errors that
      arise on 64-bit Windows builds (where "ndarray.shape" contains
      "long" objects), like "ValueError: For numerical factors,
      num_columns must be an int."
    * Fix deprecation warnings encountered with numpy 1.10
* Wed Jul 22 2015 toddrme2178@gmail.com
  - Update to version 0.4.0
    + Incompatible changes:
    * :class:`EvalFactor` and :meth:`ModelDesc.from_formula` no longer
      take an ``eval_env`` argument.
    * The :func:`design_matrix_builders` function and the
      :meth:`factor_protocol.memorize_passes_needed` method now require an
      ``eval_env`` as an additional argument.
    * The :class:`DesignInfo` constructor's arguments have totally
      changed. In addition to the changes needed to support the new
      features below, we no longer support "shim" DesignInfo objects that
      have non-trivial term specifications. This was only included in the
      first place to provide a compatibility hook for competing formula
      libraries; four years later, no such libraries have shown up. If one
      does, we can re-add it, but I'm not going to bother maintaining it
      in the mean time...
    * Dropped support for Python 3.2.
    + Other changes:
    * Patsy now supports Pandas's new (version 0.15 or later) categorical
      objects.
    * Formulas (or more precisely, :class:`EvalFactor` objects) now only
      keep a reference to the variables required from their environment
      instead of the whole environment where the formula was
      defined. (Thanks to Christian Hudon.)
    * :class:`DesignInfo` has new attributes
      :attr:`DesignInfo.factor_infos` and :attr:`DesignInfo.term_codings`
      which provide detailed metadata about how each factor and term is
      encoded.
    * As a result of the above changes, the split between
      :class:`DesignInfo` and :class:`DesignMatrixBuilder` is no longer
      necessary; :class:`DesignMatrixBuiler` has been eliminated. So for
      example, :func:`design_matrix_builders` now returns a list of
      :class:`DesignInfo` objects, and you can now pass
      :class:`DesignInfo` objects directly to any function for building
      design matrices. For compatibility, :class:`DesignInfo` continues to
      provide ``.builder`` and ``.design_info`` attributes, so that old
      code should continue to work; however, these attributes are
      deprecated.
    * Ensured that attempting to pickle most Patsy objects raises an
      error. This has never been supported, and the interesting cases
      failed in any case, but now we're taking a more systematic
      approach. (Soon we will add real, supported pickling support.)
    * Fixed a bug when running under ``python -OO``.
  - update to version 0.3.0:
    * New stateful transforms for computing natural and cylic cubic
      splines with constraints, and tensor spline bases with
      constraints. (Thanks to @broessli and GDF Suez for contributing
      this code.)
    * Dropped support for Python 2.5 and earlier.
    * Switched to using a single source tree for both Python 2 and
      Python 3.
    * Added a fast-path to skip NA detection for inputs with boolean
      dtypes (thanks to Matt Davis for patch).
    * Incompatible change: Sometimes when building a design matrix for a
      formula that does not depend on the data in any way, like "1 ~ 1",
      we have no way to determine how many rows the resulting matrix
      should have. In previous versions of patsy, when this occurred we
      simply returned a matrix with 1 row. In 0.3.0+, we instead refuse
      to guess, and raise an error.
      Note that because of the next change listed, this situation occurs less frequently in 0.3.0 than in previous versions.
    * If the data argument to :func:`build_design_matrices` (or derived
      functions like :func:`dmatrix`, :func:`dmatrices`) is a
      :class:`pandas.DataFrame`, then we now check its number of rows
      and index, and insist that the output design matrices match. This
      also means that if data is a DataFrame, then the error described
      in the first bullet above cannot occur -- we will simply return a
      column of 1s that is the same size as the input dataframe.
    * Worked around some more limitations in py2exe/py2app and friends.
  - specfile:
    * update copyright year
    * changed README to README.rst
* Tue Oct 22 2013 toddrme2178@gmail.com
  - Initial version (0.2.1)

Files

/usr/lib/python3.6/site-packages/patsy
/usr/lib/python3.6/site-packages/patsy-0.5.1-py3.6.egg-info
/usr/lib/python3.6/site-packages/patsy-0.5.1-py3.6.egg-info/PKG-INFO
/usr/lib/python3.6/site-packages/patsy-0.5.1-py3.6.egg-info/SOURCES.txt
/usr/lib/python3.6/site-packages/patsy-0.5.1-py3.6.egg-info/dependency_links.txt
/usr/lib/python3.6/site-packages/patsy-0.5.1-py3.6.egg-info/requires.txt
/usr/lib/python3.6/site-packages/patsy-0.5.1-py3.6.egg-info/top_level.txt
/usr/lib/python3.6/site-packages/patsy/__init__.py
/usr/lib/python3.6/site-packages/patsy/__pycache__
/usr/lib/python3.6/site-packages/patsy/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/build.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/build.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/builtins.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/builtins.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/categorical.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/categorical.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/compat.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/compat.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/compat_ordereddict.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/compat_ordereddict.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/constraint.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/constraint.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/contrasts.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/contrasts.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/desc.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/desc.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/design_info.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/design_info.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/eval.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/eval.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/highlevel.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/highlevel.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/infix_parser.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/infix_parser.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/mgcv_cubic_splines.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/mgcv_cubic_splines.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/missing.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/missing.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/origin.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/origin.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/parse_formula.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/parse_formula.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/redundancy.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/redundancy.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/splines.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/splines.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/state.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/state.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/test_build.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/test_build.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/test_highlevel.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/test_highlevel.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/test_regressions.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/test_regressions.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/test_splines_bs_data.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/test_splines_bs_data.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/test_splines_crs_data.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/test_splines_crs_data.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/test_state.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/test_state.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/tokens.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/tokens.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/user_util.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/user_util.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/util.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/util.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/version.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/patsy/__pycache__/version.cpython-36.pyc
/usr/lib/python3.6/site-packages/patsy/build.py
/usr/lib/python3.6/site-packages/patsy/builtins.py
/usr/lib/python3.6/site-packages/patsy/categorical.py
/usr/lib/python3.6/site-packages/patsy/compat.py
/usr/lib/python3.6/site-packages/patsy/compat_ordereddict.py
/usr/lib/python3.6/site-packages/patsy/constraint.py
/usr/lib/python3.6/site-packages/patsy/contrasts.py
/usr/lib/python3.6/site-packages/patsy/desc.py
/usr/lib/python3.6/site-packages/patsy/design_info.py
/usr/lib/python3.6/site-packages/patsy/eval.py
/usr/lib/python3.6/site-packages/patsy/highlevel.py
/usr/lib/python3.6/site-packages/patsy/infix_parser.py
/usr/lib/python3.6/site-packages/patsy/mgcv_cubic_splines.py
/usr/lib/python3.6/site-packages/patsy/missing.py
/usr/lib/python3.6/site-packages/patsy/origin.py
/usr/lib/python3.6/site-packages/patsy/parse_formula.py
/usr/lib/python3.6/site-packages/patsy/redundancy.py
/usr/lib/python3.6/site-packages/patsy/splines.py
/usr/lib/python3.6/site-packages/patsy/state.py
/usr/lib/python3.6/site-packages/patsy/test_build.py
/usr/lib/python3.6/site-packages/patsy/test_highlevel.py
/usr/lib/python3.6/site-packages/patsy/test_regressions.py
/usr/lib/python3.6/site-packages/patsy/test_splines_bs_data.py
/usr/lib/python3.6/site-packages/patsy/test_splines_crs_data.py
/usr/lib/python3.6/site-packages/patsy/test_state.py
/usr/lib/python3.6/site-packages/patsy/tokens.py
/usr/lib/python3.6/site-packages/patsy/user_util.py
/usr/lib/python3.6/site-packages/patsy/util.py
/usr/lib/python3.6/site-packages/patsy/version.py
/usr/share/doc/packages/python3-patsy
/usr/share/doc/packages/python3-patsy/README.rst
/usr/share/licenses/python3-patsy
/usr/share/licenses/python3-patsy/LICENSE.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 14:50:04 2024