Skip to content
This repository was archived by the owner on Jun 27, 2025. It is now read-only.

Commit 8dbd289

Browse files
committed
Pin setuptools and remove compatibility hacks.
1 parent aaa39fc commit 8dbd289

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ black
44
hypothesis
55
invoke
66
pytest>=4.3.1
7-
setuptools
7+
setuptools>=45.0.0
88
twine
99
wheel==0.31.1; sys_platform=="linux"
1010
wheel>=0.33.5; sys_platform!="linux"

tasks.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ def build(context):
4242
env={"CPPFLAGS": "-Werror -Wno-deprecated-declarations"},
4343
replace_env=False,
4444
)
45-
if platform == "linux":
46-
from sys import abiflags
47-
48-
for so in glob("*.so"):
49-
context.run(
50-
f"patchelf --remove-needed libpython{get_python_version()}{abiflags}.so.1.0 {so}",
51-
echo=True,
52-
)
45+
# if platform == "linux":
46+
# from sys import abiflags
47+
48+
# for so in glob("*.so"):
49+
# context.run(
50+
# f"patchelf --remove-needed libpython{get_python_version()}{abiflags}.so.1.0 {so}",
51+
# echo=True,
52+
# )
5353
context.run(f"{executable} setup.py bdist_wheel", echo=True)
5454
WHEELS = glob("dist/*.whl")
5555
assert WHEELS, "No wheels in dist!"

0 commit comments

Comments
 (0)