Skip to content

Commit a2f1697

Browse files
authored
Merge pull request #1176 from DataDog/majorgreys/funcsigs
add funcsigs backport to install
2 parents abe0ce4 + 4022b8a commit a2f1697

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ def run_tests(self):
5858

5959
# psutil used to generate runtime metrics for tracer
6060
# enum34 is an enum backport for earlier versions of python
61-
install_requires = ["psutil>=5.0.0", "enum34; python_version<'3.4'"]
61+
# funcsigs backport required for vendored debtcollector
62+
install_requires = ["psutil>=5.0.0", "enum34; python_version<'3.4'", "funcsigs>=1.0.0;python_version=='2.7'"]
6263

6364
# Base `setup()` kwargs without any C-extension registering
6465
setup_kwargs = dict(

0 commit comments

Comments
 (0)