You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The snippet I have in skel for setup.cfg includes the following:
[bdist_wheel]universal = true
When a project has requires_python that only makes it work on py3, this is a little silly to make a py2.py3 wheel that only works on 3. That config value should be removed if requires_python does not allow py2.
frompackaging.specifiersimportSpecifierSetspec=SpecifierSet(requires_python)
ifnot"2.8"inspec:
# then remove
Then add something in opine/suggestions that checks for it in setup.cfg, and runs after UseDeclarativeConfig.
The text was updated successfully, but these errors were encountered:
The snippet I have in skel for
setup.cfg
includes the following:When a project has
requires_python
that only makes it work on py3, this is a little silly to make apy2.py3
wheel that only works on 3. That config value should be removed ifrequires_python
does not allow py2.Then add something in opine/suggestions that checks for it in setup.cfg, and runs after UseDeclarativeConfig.
The text was updated successfully, but these errors were encountered: