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"'
}
)
Release files for futures 3.4.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| futures-3.4.0.tar.gz | 27.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| futures-3.4.0-py2-none-any.whl | Python 2 | none | any | Details |
Total release size: 44.3 kB
Release files / futures-3.4.0.tar.gz
| Download URL | futures-3.4.0.tar.gz |
|---|---|
| Size | 27.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
3ec8ceecd1b85547aa7539c1db8d6b2a6245405de427e4780809b6f56a18fdd2
|
|
BLAKE2b-256 checksum How to use checksums |
569975ceaebf317cb027319909ed09ee117388f0d53ba0880520952a0e8a8458
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|
Release files / futures-3.4.0-py2-none-any.whl
| Download URL | futures-3.4.0-py2-none-any.whl |
|---|---|
| Size | 16.6 kB |
| Tags | Python 2 |
|
SHA-256 checksum How to use checksums |
5ec20fa8bdccf96ac9bf9fb2473f51b14c117db638aa8a4a6c27b43532a0efe9
|
|
BLAKE2b-256 checksum How to use checksums |
d4ea9d513529a89bcbcd07c8acbac9eecfad29e7562e0b9d69d14f475987ad70
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.10.7
|