Backport of the concurrent.futures package from Python 3
Project description
This is a backport of the concurrent.futures standard library module to Python 2.
It should not be installed on Python 3, although there should be no harm in doing so, as the standard library takes precedence over third party libraries.
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"'
}
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
futures-3.2.0.tar.gz
(27.3 kB
view details)
Built Distribution
futures-3.2.0-py2-none-any.whl
(15.8 kB
view details)
File details
Details for the file futures-3.2.0.tar.gz
.
File metadata
- Download URL: futures-3.2.0.tar.gz
- Upload date:
- Size: 27.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ec02aa7d674acb8618afb127e27fde7fc68994c0437ad759fa094a574adb265 |
|
MD5 | d1b299a06b96ccb59f70324716dc0016 |
|
BLAKE2b-256 | 1f9e7b2ff7e965fc654592269f2906ade1c7d705f1bf25b7d469fa153f7d19eb |
File details
Details for the file futures-3.2.0-py2-none-any.whl
.
File metadata
- Download URL: futures-3.2.0-py2-none-any.whl
- Upload date:
- Size: 15.8 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ec0a6cb848cc212002b9828c3e34c675e0c9ff6741dc445cab6fdd4e1085d1f1 |
|
MD5 | cfd62ab6c9852b04bb6048480fefaa75 |
|
BLAKE2b-256 | 2d99b2c4e9d5a30f6471e410a146232b4118e697fa3ffc06d6a65efde84debd0 |