aboutsummaryrefslogtreecommitdiffstats
path: root/tests/shlib_test/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shlib_test/setup.py')
-rwxr-xr-xtests/shlib_test/setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/shlib_test/setup.py b/tests/shlib_test/setup.py
index 122de77c..b0c93996 100755
--- a/tests/shlib_test/setup.py
+++ b/tests/shlib_test/setup.py
@@ -1,9 +1,9 @@
-from setuptools import setup, Extension, SharedLibrary
+from setuptools import setup, Extension, Library
setup(
name="shlib_test",
ext_modules = [
- SharedLibrary("hellolib", ["hellolib.c"]),
+ Library("hellolib", ["hellolib.c"]),
Extension("hello", ["hello.pyx"], libraries=["hellolib"])
],
test_suite="test_hello.HelloWorldTest",