diff --git a/.travis.yml b/.travis.yml index 5326a77..5d5aecb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,19 +10,6 @@ matrix: homebrew: packages: - libpcap - update: true - - - os: osx - language: generic - env: TRAVIS_PYTHON_VERSION="3.7" - osx_image: xcode11.2 - python: '3.7' - compiler: gcc - addons: - homebrew: - packages: - - libpcap - update: true - os: linux language: python diff --git a/requirements.txt b/requirements.txt index ff6b980..adfa83f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ pyzmq>=18.1.1 -cffi>=1.13.1 \ No newline at end of file +cffi>=1.13.2 \ No newline at end of file diff --git a/setup.py b/setup.py index d4500d7..0ff1396 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ class BuildNdpiCommand(build_ext): subprocess.check_call(['git', 'clone', '--branch', '3.0-stable', 'https://github.com/ntop/nDPI.git']) os.chdir('nDPI/') subprocess.check_call(['./autogen.sh']) - subprocess.check_call(['./configure']) + subprocess.check_call(['CC=gcc ./configure']) subprocess.check_call(['make']) os.chdir('src/') os.chdir('lib/') @@ -76,7 +76,7 @@ needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv) pytest_runner = ['pytest-runner'] if needs_pytest else [] python_requires = '>=3.6' -install_requires = ['cffi>=1.13.1', +install_requires = ['cffi>=1.13.2', 'pyzmq>=18.1.1'] if os.getenv('READTHEDOCS'):