Skip to content

Commit

Permalink
Attempt to remove distutils to fix the build on python 3.12.x (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
dburkart committed Jul 27, 2024
1 parent 610be98 commit 795cfb1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
from distutils.core import setup, Extension
from distutils.sysconfig import get_python_inc
from setuptools import Extension, setup

module = Extension('checksieve',
extra_compile_args = ['-std=c++17'],
sources = ['src/python.cc'],
include_dirs = ['src', 'src/AST', 'gen', get_python_inc(), get_python_inc(plat_specific=True)],
include_dirs = ['src', 'src/AST', 'gen'],
libraries = ['checksieve'],
library_dirs = ['./'] );

Expand Down

0 comments on commit 795cfb1

Please sign in to comment.