Skip to content

Commit

Permalink
Switch from distutils to setuptools/sysconfig (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianeboyd authored Jul 24, 2023
1 parent 29ace35 commit 435ade7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import contextlib

from setuptools import Extension, setup
from distutils.command.build_ext import build_ext
from distutils.sysconfig import get_python_inc
from setuptools.command.build_ext import build_ext
from sysconfig import get_path
from Cython.Build import cythonize


Expand Down Expand Up @@ -80,7 +80,7 @@ def setup_package():
readme = f.read()

include_dirs = [
get_python_inc(plat_specific=True),
get_path("include"),
os.path.join(root, "murmurhash", "include"),
]

Expand Down

0 comments on commit 435ade7

Please sign in to comment.