Hugo van Kemenade
Hugo van Kemenade
Fine by me to revert the changes. For some reason, I ended up at the https://github.com/pypa/setuptools/blob/main/NEWS.rst which doesn't have the dates. I probably got the new release notification to https://github.com/pypa/setuptools/releases,...
We're considering something like https://github.com/python-pillow/Pillow/pull/7171 to work around this with a custom backend. Does anyone have a nicer way to do it?
PEP 527 has rationale for removing those formats from PyPI, and not only based on downloads. As of today, PyPI has now fully implemented PEP 527: * Issue https://github.com/pypa/warehouse/issues/6792 *...
This is my use case, to get a valid PyPI version to upload (untagged) dev versions to Test PyPI: ```python # setup.py from setuptools import setup def local_scheme(version): """Skip the...
I suggest keeping CalVer but switching from YYYY.MM.DD to YYYY.MM.micro, where micro is set to 0 for the first release of the month, then incremented for subsequent releases. https://calver.org/#scheme This...
> How long is Python 2 going to be supported, by the way? 2.7 and 3.6 were dropped in December in https://github.com/pypa/wheel/commit/2fae593de291a9963f932ffe0e18241b9f95e5c8, not yet released.
Maybe also support (maximum one?) blank line? ```diff commands = - # Unit tests {envpython} -m pytest --cov tinytext --cov tests --cov-report xml {posargs} - - # Test runs tinytext...
Here's another example. First bit the same as before, second bit slightly different: ```diff --- tox.ini +++ tox.ini @@ -10,10 +10,7 @@ pandas tests commands = - # Unit tests...
Sure, updated!
Updated to use underscores instead of hyphens, to match blurb, as decided during the EuroPython sprint: https://github.com/python/core-workflow/pull/499#issuecomment-1646975946