Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Native support for ARM Macs #159

Merged
merged 1 commit into from
Mar 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pandana/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .network import Network

version = __version__ = '0.6.1.dev1'
version = __version__ = '0.6.1.dev2'
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
import sys
import sysconfig

from setuptools import find_packages
from distutils.core import setup, Extension
from setuptools import find_packages, setup, Extension
from setuptools.command.test import test as TestCommand
from setuptools.command.build_ext import build_ext

Expand Down Expand Up @@ -58,7 +57,7 @@ def run(self):
# versions of Xcode Command Line Tools, or newer versions installed separately

if sys.platform.startswith('darwin'): # Mac

extra_compile_args += ['-stdlib=libc++']
extra_link_args += ['-stdlib=libc++']

Expand Down Expand Up @@ -126,7 +125,7 @@ def run(self):
## Standard setup
###############################################

version = '0.6.1.dev1'
version = '0.6.1.dev2'

packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])

Expand Down