Martin Wendt

Results 30 comments of Martin Wendt

This worked for me: ```zsh cd test_pip test_pip % python -m venv .venv test_pip % source .venv/bin/activate test_pip % python -m pip install -U pip test_pip % python -m pip...

`setup.py sdist` worked for me on macOS, but for some reason not on the Windows box I use to build (because of the MSI istaller). Adding it to `options.data_files` now,...

Which Windows version are you using? Does it happen with all files, or just some, e.g. when on-ascii characters are involved?

Tried on Windows 11 and it worked for me. Please add `-v -v` and send the relevant logfile parts

Strange. I think we need the - complete log file (with double verbose: `-vv`) - the exact command line that you executed, - and the configuration file (wsgidav.yaml) - How...

There is also a new 4.0.2 release, you could try that as well...

Thanks for taking the time to collect the information and sorry for the late response 😕 It seem you are using a simple configuration, basically what I used when I...

Here is another case where B902 is flagged, where it should not (IMO): `@abstractclassmethod` should allow/expect the 'cls' argument name in the same way as `@classmethod` does. ```py from abc...