Skip to content

Commit

Permalink
use setuptools instead of distutils
Browse files Browse the repository at this point in the history
perlinm committed Jan 31, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent f449be0 commit 3458eda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-cython.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/usr/bin/env python3
import os
import shutil
from distutils.command.build_ext import build_ext
from distutils.core import Distribution, Extension

import numpy
from Cython.Build import cythonize
from setuptools import Distribution, Extension
from setuptools.command.build_ext import build_ext


def build_cython() -> None:

0 comments on commit 3458eda

Please sign in to comment.