Skip to content

Commit 8b25af9

Browse files
committed
Use setuptools rather than distutils
1 parent cc4f985 commit 8b25af9

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Diff for: pyperformance/data-files/benchmarks/bm_ctypes/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "pyperformance_bm_ctypes"
33
requires-python = ">=3.8"
4-
dependencies = ["pyperf"]
4+
dependencies = ["pyperf", "setuptools"]
55
urls = {repository = "https://github.com/python/pyperformance"}
66
dynamic = ["version"]
77

Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
setuptools==62.4.0

Diff for: pyperformance/data-files/benchmarks/bm_ctypes/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from distutils.core import setup, Extension
1+
from setuptools import setup, Extension
22

33
# Compile the C shared object containing functions to call through ctypes. It
44
# isn't technically a Python C extension, but this is the easiest way to build

0 commit comments

Comments
 (0)