Backport of the concurrent.futures package from Python 3
Project Links
Meta
Author: Brian Quinlan
Maintainer: Alex Grönholm
Requires Python: >=2.6, <3
Classifiers
License
- OSI Approved :: Python Software Foundation License
Development Status
- 5 - Production/Stable
Intended Audience
- Developers
Programming Language
- Python :: 2.6
- Python :: 2.7
- Python :: 2 :: Only
This is a backport of the concurrent.futures standard library module to Python 2.
It does not work on Python 3 due to Python 2 syntax being used in the codebase. Python 3 users should not attempt to install it, since the package is already included in the standard library.
To conditionally require this library only on Python 2, you can do this in your setup.py:
setup(
...
extras_require={
':python_version == "2.7"': ['futures']
}
)
Or, using the newer syntax:
setup(
...
install_requires={
'futures; python_version == "2.7"'
}
)
Oct 31, 2022
3.4.0
Jul 15, 2019
3.3.0
Nov 30, 2017
3.2.0
Oct 09, 2021
3.1.1.post1
Apr 14, 2017
3.1.1
Apr 14, 2017
3.1.0
Feb 14, 2016
3.0.5
Jan 18, 2016
3.0.4
Jun 12, 2015
3.0.3
May 12, 2015
3.0.2
May 03, 2015
3.0.1
May 03, 2015
3.0.0
Sep 25, 2014
2.2.0
Jan 14, 2014
2.1.6
Nov 12, 2013
2.1.5
Jun 23, 2013
2.1.4
Aug 25, 2012
2.1.3
Jan 08, 2011
2.1.2
Jan 08, 2011
2.1.1
Dec 23, 2010
2.1
Nov 13, 2010
2.0
Oct 25, 2009
1.0
Jun 17, 2009
0.2
Jun 04, 2009
0.1
Jun 04, 2009
0.0rc0
Wheel compatibility matrix
Files in release
No dependencies