Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/udst/pandana into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
smmaurer committed Aug 7, 2019
2 parents 41f71c4 + 62f7d71 commit 87ea0ce
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 364 deletions.
352 changes: 0 additions & 352 deletions ez_setup.py

This file was deleted.

24 changes: 12 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
import sys
import sysconfig

from ez_setup import use_setuptools
use_setuptools()

from setuptools import find_packages
from distutils.core import setup, Extension
from setuptools.command.test import test as TestCommand
Expand Down Expand Up @@ -70,7 +67,10 @@ def run(self):
extra_compile_args += ['-D NO_TR1_MEMORY', '-stdlib=libc++']
extra_link_args += ['-stdlib=libc++']

if os.environ.get('USEOPENMP'):
# This checks if the user has replaced the default clang compiler (this does
# not confirm there's OpenMP support, but is the best we could come up with)
if os.popen('which clang').read() != '/usr/bin/clang':
os.environ['CC'] = 'clang'
extra_compile_args += ['-fopenmp']

# Window compilation: flags are for Visual C++
Expand Down Expand Up @@ -122,14 +122,14 @@ def run(self):
url='https://udst.github.io/pandana/',
ext_modules=[cyaccess],
install_requires=[
'cython>=0.25.2',
'matplotlib>=1.3.1',
'numpy>=1.8.0',
'osmnet>=0.1.2',
'pandas>=0.17.0',
'requests>=2.0',
'scikit-learn>=0.18.1',
'tables>=3.1.0'
'cython >=0.25.2',
'matplotlib >=1.3.1',
'numpy >=1.8.0',
'osmnet >=0.1.2',
'pandas >=0.17.0',
'requests >=2.0',
'scikit-learn >=0.18.1',
'tables >=3.1.0'
],
tests_require=[
'pycodestyle',
Expand Down

0 comments on commit 87ea0ce

Please sign in to comment.