From 09b81e006a0a862f60fd872013291b1c3d17c649 Mon Sep 17 00:00:00 2001 From: Sascha Schirra Date: Fri, 4 Oct 2019 11:41:15 +0200 Subject: [PATCH] MachO Universal binary support --- AUTHORS | 1 + requirements.txt | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index 7c1a2d5..d789e05 100644 --- a/AUTHORS +++ b/AUTHORS @@ -12,3 +12,4 @@ Contributers: - Matthias Ganz (--cfg-only option) - Lorenzo Santina (bgufixes) - Andrey Konovalov +- Robert Sesek (MachO Fat binary support) diff --git a/requirements.txt b/requirements.txt index 9096c06..0707e96 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ capstone==4.0.1 -filebytes==0.9.21 +filebytes==0.10.0 keystone-engine==0.9.1.post3 diff --git a/setup.py b/setup.py index 0243707..9a951ff 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages -version = '1.12.5' +version = '1.13.0' package_name = "ropper" package_dir = "ropper" package_description = """Show information about files in different file formats and find gadgets to build rop chains for different architectures. @@ -13,7 +13,7 @@ if p.startswith('ropper'): valid_packages.append(p) -install_requires = ['filebytes>=0.9.18'] +install_requires = ['filebytes>=0.10.0'] try: import capstone if capstone.cs_version()[0] < 3: