From 178cf9c07f4d919db8e800bf2e6d2e2f685ffad3 Mon Sep 17 00:00:00 2001 From: clach04 Date: Mon, 29 Jul 2024 07:56:59 -0700 Subject: [PATCH] Fix issue #3 - pin version pyelftools==0.29 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 097d809..b0bdb19 100644 --- a/setup.py +++ b/setup.py @@ -18,11 +18,11 @@ "Operating System :: OS Independent", ], install_requires=[ - 'pyelftools', + 'pyelftools==0.29', ], packages=[ 'elfwrapper' ], python_requires='>=3.8', -) \ No newline at end of file +)