We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c20efc commit a409c8fCopy full SHA for a409c8f
setup.py
@@ -32,7 +32,10 @@
32
"datadog==0.39.0",
33
"ddtrace==0.45.0",
34
"wrapt==1.11.2",
35
- "setuptools==42.0.2",
+ # If building for Python 3, use the latest version of setuptools
36
+ "setuptools>=54.2.0; python_version >= '3.0'",
37
+ # If building for Python 2, use the latest version that supports Python 2
38
+ "setuptools>=44.1.1; python_version < '3.0'"
39
],
40
extras_require={
41
"dev": ["nose2==0.9.1", "flake8==3.7.9", "requests==2.22.0", "boto3==1.10.33"]
0 commit comments