14
0
Commit Graph

11 Commits

Author SHA256 Message Date
557e87afda Accepting request 1059284 from home:Simmphonie:branches:devel:languages:python
- ignore some faulty tests

OBS-URL: https://build.opensuse.org/request/show/1059284
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-resolvelib?expand=0&rev=18
2023-01-18 09:46:42 +00:00
b8216878f0 - add comment on why we need to stay with < 0.9.0 (bsc#1206225)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-resolvelib?expand=0&rev=16
2022-12-15 21:05:02 +00:00
79080f5423 Accepting request 1042749 from home:yarunachalam:branches:devel:languages:python
- Update to version 0.9.0 
  * Features
    A new reporter hook rejecting_candidate is added, replacing backtracking.
    The hook is called every time the resolver rejects a conflicting candidate before trying out the next one in line. #101
  * Bug Fixes
    Some valid states that were previously rejected are now accepted. This affects states where multiple candidates for
    the same dependency conflict with each other. The information argument passed to AbstractProvider.get_preference may
    now contain empty iterators. This has always been allowed by the method definition but it was previously not possible in practice. #91

OBS-URL: https://build.opensuse.org/request/show/1042749
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-resolvelib?expand=0&rev=14
2022-12-14 10:07:04 +00:00
OBS User buildservice-autocommit
0786cf491f Updating link to change in openSUSE:Factory/python-resolvelib revision 10
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-resolvelib?expand=0&rev=06a3673fd8c8f242c5ccbe076fb5bb09
2022-12-08 12:48:26 +00:00
63ae397c58 Accepting request 1040728 from home:yarunachalam:branches:devel:languages:python
- Update to version 0.9.0 
  Features
  * A new reporter hook rejecting_candidate is added, replacing backtracking.
    The hook is called every time the resolver rejects a conflicting candidate
    before trying out the next one in line. #101
  * Bug Fixes
    Some valid states that were previously rejected are now accepted.
    This affects states where multiple candidates for the same dependency conflict
    with each other. The information argument passed to AbstractProvider.get_preference
    may now contain empty iterators. This has always been allowed by the method definition
    but it was previously not possible in practice. #91

OBS-URL: https://build.opensuse.org/request/show/1040728
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-resolvelib?expand=0&rev=12
2022-12-06 15:59:56 +00:00
a197ef419a Accepting request 1039894 from home:yarunachalam:branches:devel:languages:python
- Update to v0.9.0 
  Features
  * A new reporter hook rejecting_candidate is added, replacing backtracking. The hook is called every time the resolver
    rejects a conflicting candidate before trying out the next one in line. #101
  Bug Fixes
  * Some valid states that were previously rejected are now accepted. This affects states where multiple candidates for the
    same dependency conflict with each other. The information argument passed to AbstractProvider.get_preference may now contain
    empty iterators. This has always been allowed by the method definition but it was previously not possible in practice. #91

OBS-URL: https://build.opensuse.org/request/show/1039894
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-resolvelib?expand=0&rev=10
2022-12-03 22:34:11 +00:00
8ad5ddbf30 - update to 0.8.1:
* A new reporter hook ``resolving_conflicts`` is added. The resolver triggers
  * this hook when it detects conflicts in the dependency tree, and before it
  * attempts to fix them. The hook accepts one single argument ``causes``, which
  * is a list of ``(requirement, parent)`` 2-tuples that represents all the
  * edges that lead to the detected conflicts.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-resolvelib?expand=0&rev=8
2022-07-17 08:26:53 +00:00
f3c20d0415 - update to 0.8.0:
* Add ``backtrack_causes`` to ``get_preference``, which contains information
    about the requirements involved in the most recent backtrack. This allows
    the provider to utilise this information to tweak the ordering as well as
    for recording/reporting conflicts.
  * When merging a candidate's dependencies, make sure the merge target is
    up-to-date within the loop, so the merge does not lose information when a
    candidate returns multiple dependency specifications under one identifier
    (e.g. specifyiung two dependencies ``a>1`` and ``a<2``, instead of one single
    ``a>1,<2`` dependency).  `#80 <https://github.com/sarugaku/resolvelib/issues/80>`_
  * Redesign ``get_preference()`` to include resolution state on dependencies
    other than the currently working one, to allow the provider to better take
    account of the global resolver knowledge and determine the best strategy. The
    provider now can, for example, correctly calculate how far a dependency is
    from the root node in the graph.  `#74 <https://github.com/sarugaku/resolvelib/issues/74>`_
  * A new argument ``incompatibilities`` is now passed to the ``find_matches()``
    hook, which the provider must use to exclude matches from the return value.
  * Redesign ``find_matches()`` to include resolution state on dependencies other
    than the currently working one, to handle usages that need to return candidates
    based on non-local states. One such example is PEP 508 direct URLs specified
    on a package, which need to be available to the same package specified with
    extras (which would have a different identifier).
  * The resolver no longer relies on implicit candidate equality to detect
    incompatibilities. This is done by an additional ``find_matches()`` argument;
    see the *Features* section to learn more.
  * Provide type stubs for most classes. 
  * Fix a state management bug that causes the resolver to enter an infinite loop
    in certain backtracking cases.
  * Fix a performance regression if ``find_matches()`` returns a non-built-in sequence instance.
  * ``find_matches()`` now may return a ``Callable[[], Iterator[Candidate]]`` to

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-resolvelib?expand=0&rev=7
2021-11-07 18:30:29 +00:00
Tomáš Chvátal
dbbbc231a3 Accepting request 794545 from home:mcalabkova:branches:devel:languages:python
- Update to 0.3.0
  * Provide both the requirements and their parents as exceptiondata for the
    ``ResolutionImpossible`` exception, via a ``causes`` attribute that replaces
    the previous ``requirements`` attribute.
  * Make resolver backtrack when none of the candidates requested for a package
    are able to resolve due to them requesting unworkable requirements, or a
    package has no candidates at all. Previously the resolver would give up on the
    spot.
  * Ensure the result returned by the resolver only contains candidates that are
    actually needed. This is done by tracing the graph after resolution completes,
    snipping nodes that don’t have a route to the root.

OBS-URL: https://build.opensuse.org/request/show/794545
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-resolvelib?expand=0&rev=5
2020-04-16 10:26:01 +00:00
Tomáš Chvátal
e46b344976 Accepting request 685605 from home:jengelh:branches:devel:languages:python
- Use noun phrase in descriptions.

OBS-URL: https://build.opensuse.org/request/show/685605
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-resolvelib?expand=0&rev=3
2019-03-17 15:30:33 +00:00
Tomáš Chvátal
8a2a817353 Accepting request 682365 from home:jayvdb:coala:python3-bears
- Initial spec for v0.2.2

OBS-URL: https://build.opensuse.org/request/show/682365
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-resolvelib?expand=0&rev=1
2019-03-07 12:49:53 +00:00