gituser/production/: futures-3.2.0 metadata and description

Homepage Simple index

Backport of the concurrent.futures package from Python 3

author Alex Grönholm
author_email alex.gronholm@nextday.fi
classifiers
  • License :: OSI Approved :: Python Software Foundation License
  • Development Status :: 5 - Production/Stable
  • Intended Audience :: Developers
  • Programming Language :: Python :: 2.6
  • Programming Language :: Python :: 2.7
  • Programming Language :: Python :: 2 :: Only
license PSF
requires_python >=2.6, <3
File Tox results History
futures-3.2.0-py2-none-any.whl
Size
15 KB
Type
Python Wheel
Python
2
futures-3.2.0.tar.gz
Size
27 KB
Type
Source
Build Status

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