Skip to content

Commit 3407404

Browse files
yurishkuroblack-adder
authored andcommitted
Remove concurrent.futures dependency (#47)
1 parent b2e1f2e commit 3407404

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

setup.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@
1111
url='https://github.com/uber-common/opentracing-python-instrumentation',
1212
keywords=['opentracing'],
1313
classifiers=[
14-
'Development Status :: 3 - Alpha',
14+
'Development Status :: 5 - Production/Stable',
1515
'Intended Audience :: Developers',
1616
'License :: OSI Approved :: MIT License',
1717
'Programming Language :: Python :: 2.7',
18+
'Programming Language :: Python :: 3.3',
19+
'Programming Language :: Python :: 3.4',
20+
'Programming Language :: Python :: 3.5',
21+
'Programming Language :: Python :: 3.6',
1822
'Programming Language :: Python :: Implementation :: PyPy',
1923
'Topic :: Software Development :: Libraries :: Python Modules',
2024
],
@@ -24,11 +28,10 @@
2428
platforms='any',
2529
install_requires=[
2630
'future',
27-
'futures;python_version<"3"',
2831
'wrapt',
29-
'tornado>=4.1',
32+
'tornado>=4.1,<5',
3033
'contextlib2',
31-
'opentracing>=1.1,<1.3',
34+
'opentracing>=1.1,<2',
3235
'six',
3336
],
3437
extras_require={

0 commit comments

Comments
 (0)