futures 3.4.0


pip install futures

  Latest version

Released: Oct 31, 2022

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
Build Status

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"'
    }
)

Wheel compatibility matrix

Platform Python 2
any

Files in release

No dependencies