Michał Górny

Results 448 issues of Michał Górny

Remove the redundant `version` attribute from `setup.cfg` since `setuptools_scm` is used for versioning. Using `setuptools_scm` to write the version to a file and simultaneosly reading it from that file (rather...

### Describe the bug **context** When `docutils` is updated to `0.22`, `sphinx-tabs` fails over removed `backrefs` key. **expectation** `sphinx-tabs` working. **bug** ```pytb translator = , node = def visit(translator, node):...

bug

I'm sorry if I'm doing something wrong but it looks like provenance is available for `pydantic-2.12.1.tar.gz` but not for the corresponding `pydantic_core-2.41.3.tar.gz`: https://pypi.org/integrity/pydantic_core/v2.41.3/pydantic_core-2.41.3.tar.gz/provenance ``` {"message":"No provenance available for pydantic_core-2.41.3.tar.gz"} ```

Remove the incorrect assumption that PyPy does not use the extension modules -- it needs them just the same as other Python implementations. Make the `cffi` dependency specific to CPython,...

The `setup.py` script currently claims that no extension module should be built for PyPy: https://github.com/jnwatson/py-lmdb/blob/4e5c2ebf47ff1da60c01254bfdcac116c893abfc/setup.py#L183-L185 This is incorrect. CFFI uses extension modules on PyPy just the same as on CPython....

Use the `@pytest.mark.flaky` marker in place of the `@flaky.flaky` decorator, to modernize the code and improve compatibility with other plugins providing the feature such as `pytest-rerunfailures`.

Hit this in the wild while trying to run [fakeredis](https://github.com/cunla/fakeredis-py/)'s test suite. Trivial reproducer: ```python import pytest_asyncio @pytest_asyncio.fixture(scope="session") def foo(): pass def test_foo(foo): pass ``` ```pytb $ pytest -o asyncio_default_fixture_loop_scope=function...

# Summary The 7.0.0 reenabled the following tests which seem to be failing with Python 3.14. While I realize that it's not tested yet, the previous versions had a 100%...

Add `typing.ByteString` to `BUILTINS_MAPPING` only when it is present. The type has been removed in Python 3.14. Fixes #127

Creating a draft PR to track the prototype for #2349.