File python-sphobjinv.changes of Package python-sphobjinv

-------------------------------------------------------------------
Wed Jun  4 12:18:50 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>

- Update to 2.3.1.3
  * Add `pytest-retry` to dev requirements and some `flaky` marks ([#306]).
    * Hopefully will iron out some of the test failures due to transient network
      problems.
  * Skip more characters in `test_name_lead_chars` for Sphinx 8.2+, that started
    using `splitlines()` instead of `split('\n')` ([#315]).
    * Add the boundary Sphinx versions 8.1.3 and 8.2.0 to the tox env list.
  * Remove job to post a notice on new PRs ([#316]).
    * The permissions aren't such that it works on PRs from forks, so there's no
      reason to have it run.
  * Remove Codecov ([#316]).
    * It's over-weight for a project and team of this size, and is not worth
      trying to make work in its current incarnation.
  * Remove `--nonloc` from CI Python/OS test matrix jobs and add new, targeted
    `--nonloc` job ([#316]).
    * Having this many jobs pulling this many inventories at once from remote
      sites has started to trigger `429 Too Many Requests` responses. Best to
      lighten the testing load.
  * Coalesce all CI into GitHub Actions, re-organize, and add tailored execution
    contexts ([#306]).
    * Contexts:
      * DRAFT PRs: Tests run on Python 3.12 for Windows and Linux
       READY PRs:
        * Full Mac/Win/Linux test matrix on Python 3.9-3.11, 3.13 (GIL)
        * Doctests
        * Linting
      * READY RELEASE PRs:
        * sdist builds and is testable
        * Docs build with warnings treated as errors
        * flake8 noqa check (nofail, info only)
        * Doctests on README Python
        * Coverage check for test suite code
      * OPENED, READY PRs: Post a comment on the PR noting that CI is much
        lighter for draft PRs.
    * Delete Azure Pipelines and old GitHub Actions config
  * Remove obsolete `pep517` from requirements ([#306]).
  * Rename `flake8-noqa` tox environment to `flake8_noqa` ([#306]).
    * `-` has special meaning when naming tox envs/deps, best to avoid it.
  * Bump dev Sphinx version to 7.4.7 ([#305]).
    * We stay under 8.0 because Sphinx v8 drops Python 3.9.
  * Clean up dependencies ([#305]).
    * Remove `pytest-ordering`, as it is no longer used in the test suite and is
      falling out of maintenance enough to start causing some things to fail.
    * Remove `sphinx-removed-in`, as `.. versionremoved::` is now a Sphinx
      built-in.
    * Remove `interrogate`, `pre-commit`, `rope`, `wget` from `requirements-dev.txt`.
      * No longer used for most; for `rope`, now no plans to use it.
- Update BuildRequires from pyproject.toml

-------------------------------------------------------------------
Thu Apr 24 12:49:55 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>

- skip some failing tests with Sphinx 8.2, gh#bskinn/sphobjinv#314
- Update to 2.3.1.2
  * Added support for Python 3.13.
  * Dropped support for Python 3.8 (EOL).
  * Bumped Read the Docs Python version to 3.12.
- 2.3.1.1
  * Added formal support for Python 3.12.
  * Removed formal support for Python 3.7, which is end-of-life.
  * Convert README from reST to Markdown (#289, fixes #287).
  * Fix some broken/redirecting docs links (#289).
  * Adjust flake8 configuration to account for some new lint warnings/errors (#289).

-------------------------------------------------------------------
Wed Mar 27 20:53:45 UTC 2024 - ecsos <ecsos@opensuse.org>

- Add %{?sle15_python_module_pythons}

-------------------------------------------------------------------
Fri Dec 15 22:37:28 UTC 2023 - Dirk Müller <dmueller@suse.com>

- update to 2.3.1:
  * The printout of the inferred `intersphinx_mapping` item for
    inventories retrieved by URL (`--url`) in the 'suggest' CLI
    mode is now relocated to fall immediately below the
    inventory-search output.
  * The 'suggest' CLI mode output now includes dividers for
    improved readability.
  * `MANIFEST.in` was revised in order to provide a testable
    (`pytest --nonloc`)
  * sdist, in order to streamline packaging of `sphobjinv` for
    conda-forge.
  * The version constraint for `pytest-check` was raised to
    `>=1.1.2`.
  * The CLI now prints the project name and version for the
    `objects.inv` as  part of the 'suggest' mode output.
  * The CLI now prints an inferred `intersphinx_mapping` entry
    for a remote docset as part of the 'suggest' mode output,
    where such inference is possible. The output from this mapping
    inference was added to the relevant tests, and a couple of
    unit tests on some basic pieces of functionality were
    written.
  * The CLI now provides considerably more information about what
    is happening with the URLs it checks when trying to retrieve a
    remote inventory.
  * CLI 'suggest' results output now displays more information
    about the total number of objects in the inventory, the search
    score threshold, and the number of results falling at/above
    that threshold.
  * A new CLI option, `-p`/`--paginate`, enables paging of the
    results from the `suggest` feature. (#70)

-------------------------------------------------------------------
Thu Jul 14 17:08:37 UTC 2022 - Ben Greiner <code@bnavigator.de>

- Update to version 2.2.2
  * CLI 'suggest' results output now displays more information
    about the total number of objects in the inventory, the search
    score threshold, and the number of results falling at/above
    that threshold.
  * UnicodeDecodeErrors are ignored within the vendored fuzzywuzzy
    package during suggest operations, using the errors=replace
    mode within bytes.decode().
  * This misbehavior emerged after vendoring fuzzywuzzy, suggesting
    that it was a bug fixed later on in that project's development,
    after the point from which it was vendored.
  * This change may alter suggest behavior for those inventory
    objects with pathological characters. But, given their rarity,
    user experience is not expected to be noticeably affected.
- Release 2.2
  * Acceleration of the suggest functionality via use of
    python-Levenshtein is no longer possible due to the vendoring
    of an early, MIT-licensed version of fuzzywuzzy, as noted
    below. The speedup install extra is now obsolete, and has been
    removed.
  * The fuzzywuzzy string matcher was vendored into the project
    from a point in its development history before the
    python-Levenshtein dependency, and its corresponding GPL
    encumbrance, was introduced.
  * Active support for Python 3.11 added.
- Release 2.1
  * Python 3.10 support was officially added.
  * The User-Agent header sent by Inventory when making an HTTP(S)
    request now identifies sphobjinv and its version (anticipate no
    API or behavior change).
  * An extraneous newline was removed before tables printed in the
    'suggest' CLI mode (cosmetic change).
  * Previously, sphobjinv.Inventory would ignore entries in
    objects.inv that contained spaces within name (see #181); this
    is now fixed.
  * Python 3.5 is no longer supported.
  * The relaxation of the integer constraint on the priority field
    introduced in v2.1b1 has been reverted, as objects.inv data
    lines with such non-integer priority values are skipped by
    Sphinx.
  * Equality tests on Inventory and DataObjStr/DataObjBytes
    instances now work correctly.
  * Non-integer and non-numeric values for priority are now
    accepted during Inventory instantiation, consistent with what
    is allowed by DataObjStr and DataObjBytes instantiation.
  * When an inventory is retrieved via CLI from a remote URL with
    -u, the resolved location of the inventory is included in
    generated JSON at json_dict.metadata.url.
  * CLI logging messages are now emitted to stderr instead of
    stdout.
  * A hyphen can now be passed as the CLI input and/or output file
    name to instruct sphobjinv to use stdin and/or stdout,
    respectively.
  * The fileops and inventory APIs are now tested to work with both
    strings and pathlib.Path objects, where they interact with the
    filesystem.
- Enable test suite
- Remove ancient python-pathlib dependency

-------------------------------------------------------------------
Tue May 19 08:03:01 UTC 2020 - Petr Gajdos <pgajdos@suse.com>

- %python3_only -> %python_alternative

-------------------------------------------------------------------
Fri Mar  6 13:37:32 UTC 2020 - pgajdos@suse.com

- initial version 2.0.1, required by python-sphinx-autodoc-typehints
  testsuite

openSUSE Build Service is sponsored by