Results 281 comments of layday

I don't disagree with providing an escape hatch and I totally sympathise that applications can and do make crappy choices - I disagree that it should take the form of...

IMO, this change should be reverted. App configuration on macOS does _not_ belong in `Library/Preferences`, which is reserved for plist files generated by calling the "[NSUserDefaults](https://developer.apple.com/library/archive/documentation/LegacyTechnologies/WebObjects/WebObjects_3.5/Reference/Frameworks/ObjC/Foundation/Classes/NSUserDefaults/Description.html#//apple_ref/occ/cl/NSUserDefaults) class or an equivalent...

The original change was made back in 2017 in https://github.com/ActiveState/appdirs/pull/100 but it was never merged into the `release` branch of AppDirs. Arguably, platformdirs should've been started from release, not master.

The last version to have had a wheel published on PyPI was 1.5.2 on 20 Jan - was re-dropping wheels intentional? The latest version of Mako (1.1.4) doesn't have a...

Do you sign the sdists, or why do you prefer to build and upload the sdists locally and the wheels on GHA, if you don't mind me asking?

Is there a probable downside to uninstalling colorama unconditionally?

Personally I would rather print with flush and format were separate functions but I don't think it matters that much.

A PR which [genericised the isolated env class](https://github.com/pypa/build/pull/361#issuecomment-1007244397) and made `importlib-metadata` optional for the exact purpose of making build re-usable by pip can be found here: https://github.com/pypa/build/pull/361. I'd need to...

Reusing the `--wheel` flag will likely add to the confusion. #304 says that the `--wheel` flag signifies that the wheel is built from source instead of the source distribution.

Should `python -m build dist/some-tarball.tar.gz` build both an sdist and a wheel or just the wheel? Should a `.zip` file be considered an sdist or just a zipped up source...