Open
Conversation
Contributor
Author
|
Example breakage mtreinish/stestr#377 |
26e7ac7 to
81db8ab
Compare
Contributor
Author
|
I think this should form part of v2.7.4. To be clear, I'm happy to remove these things but we shouldn't do it in a patch release (so let's wait for v2.8.0) |
These were dropped in 7d62575 but that should have resulted in a major release since it was an API break. Re-add them temporarily until we release a v3.0.0. Signed-off-by: Stephen Finucane <stephen@that.guru>
These are part of our public API and should not be removed in a patch release. We do however deprecate them and skip type checks. Signed-off-by: Stephen Finucane <stephen@that.guru>
10c7d9d to
6953ff2
Compare
Contributor
Author
|
I've also re-added the |
End users can provide their own matchers. It is helpful to provide a test harness for them to use to test this. Signed-off-by: Stephen Finucane <stephen@that.guru>
github-merge-queue bot
pushed a commit
to qiskit-community/qiskit-experiments
that referenced
this pull request
Feb 18, 2026
tox 4.36.0 started enforcing the constraint that a `package_env` environment only installs what is listed in `build-system.requires`. We use `pypa/build` to build the wheel from the sdist instead of building the wheel directly. `pypa/build` is used as an external command so it was not listed in `build-system/requires` and was just listed as an extra tox environment dependency. Now listing an extra dependency is not allowed so we install `pypa/build` in the packaging environment's commands until a cleaner solution is found. See tox-dev/tox#3687 (comment) Additionally: * A pylint disable comment was added to `numpy.finfo.eps` since this was also needed for the CI to pass. * testtools 2.8.3 was excluded from the test dependencies to avoid incompatibility with stestr. The hope is the next release of stestr or testtools will address the incompatibility. See: testing-cabal/testtools#566
github-merge-queue bot
pushed a commit
to qiskit-community/qiskit-experiments
that referenced
this pull request
Feb 18, 2026
This change started as a fix for a change in behavior in tox but evolved into a set of three unrelated small fixes that are all needed to get the CI to pass again: * Set a minimum version for `tox` of 4.38.0 so that we pick up tox-dev/tox#3730 which addresses tox-dev/tox#3687 (comment). Additionally, `tox-uv` is added as a tox dependency for consistency since that is used in CI (but actually set it to !=4.36,!=4.37 since 4.38.0 requires Python >=3.10 and this change is a precursor to the one that drops Python 3.9). * A pylint disable comment was added to `numpy.finfo.eps` since this was also needed for the CI to pass. * testtools 2.8.3 was excluded from the test dependencies to avoid incompatibility with stestr. The hope is the next release of stestr or testtools will address the incompatibility. See: testing-cabal/testtools#566
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
These were dropped in 7d62575 and a21157f but that should have resulted in a major release since it was an API break. Re-add them temporarily until we release a v3.0.0.
We also add a
testtools.matchers.testmodule to allow end-users to continue using the test harness previously found intesttools.tests.matches.helpers.