agronholm / pythonfutures

Backport of the concurrent.futures package to Python 2.6 and 2.7
Other
232 stars 51 forks source link

Declare python_requires<3 in setup.py? #95

Closed atugushev closed 3 years ago

atugushev commented 3 years ago

See https://github.com/pypa/setuptools/issues/2687#issuecomment-939064397 for details.

agronholm commented 3 years ago

At the risk of beating a dead horse, it requires extraordinary measures for this package to cause problems on Python 3. Normally, standard library imports take precedence over third party imports. How did this happen in your case?

agronholm commented 3 years ago

I should also point out that this is already present in setup.py: https://github.com/agronholm/pythonfutures/blob/master/setup.py#L39

atugushev commented 3 years ago

Ah, I should've checked the latest setup.py in the first place. Sorry for the noise!