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
Using this is broken from Python 2; see https://github.com/tomerfiliba/plumbum/pull/561/checks . You are using the old egg-based setup_requires, which is deprecated and doesn't work correctly and is pulling a Python 3 only version of setuptoools-scm. The best fix would be to add universal wheels for releases and also add a pyproject.toml file.
After fixing this you can drop Python 2 support by changing the python_requires - but that should always be the first thing to change, not the last, since pip will get old versions of the package on old versions of the language, that's fine.
The text was updated successfully, but these errors were encountered:
Using this is broken from Python 2; see https://github.com/tomerfiliba/plumbum/pull/561/checks . You are using the old egg-based setup_requires, which is deprecated and doesn't work correctly and is pulling a Python 3 only version of setuptoools-scm. The best fix would be to add universal wheels for releases and also add a pyproject.toml file.
After fixing this you can drop Python 2 support by changing the python_requires - but that should always be the first thing to change, not the last, since pip will get old versions of the package on old versions of the language, that's fine.
The text was updated successfully, but these errors were encountered: