Jason R. Coombs

Results 1062 comments of Jason R. Coombs

I'm not sure I follow. What is `SYSROOT` set to such that prefixing that value transforms `/usr/include/python3.10` to `/usr/include/armv7a-unknown-linux-gnueabihf/python3.10`? Can you write a test that captures the missed expectation? Please...

I've resolved the conflicts and I'd like to test the changes, but GitHub is rejecting me pushing the resolution. ``` distutils add-mingw-support @ git push fatal: The upstream branch of...

That failed because there was a latent reference to setup.cfg. Corrected in 416ef6a75.

And another revision to replace `testing` with `test`. 5fb38a1e1.

Tests are now failing during collection: ``` ______________ ERROR collecting distutils/tests/test_install.py _______________ ImportError while importing test module 'D:/a/distutils/distutils/distutils/tests/test_install.py'. Hint: make sure your test modules/packages have valid Python names. Traceback: distutils/tests/test_install.py:16:...

@naveen521kk Can you pull 5fb38a1e1 over to your branch so we can get the CI to update here and then investigate why the wrong distutils is getting imported (but only...

I encountered similar errors in collection in #259, which I worked around by pinning pytest. And I can see the pin has taken effect, as pytest 8.0.2 is being used....

When I was testing with pytest 8.2, where `_pytest.pathlib.resolve_pkg_root_and_module_name`, invoked when `import-mode=importlib`, doesn't rely on sys.path at all. On Pytest 8.0.2, the logic is very different. Let me see if...

Aha. I see the difference now. It's the invocation of `pytest distutils/tests`. I created this dockerfile to replicate the behavior. ```Dockerfile from jaraco/multipy-tox:jammy RUN git clone https://github.com/msys2-contrib/distutils WORKDIR distutils RUN...