Skip to content

Commit 73fc730

Browse files
authored
Merge pull request #7175 from radarhere/cygwin
Fixed finding dependencies on Cygwin
2 parents 63d6221 + 053cb3d commit 73fc730

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/test-cygwin.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
- name: Build
105105
shell: bash.exe -eo pipefail -o igncr "{0}"
106106
run: |
107-
SETUPTOOLS_USE_DISTUTILS=stdlib .ci/build.sh
107+
.ci/build.sh
108108
109109
- name: Test
110110
run: |

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -515,6 +515,7 @@ def build_extensions(self):
515515

516516
elif sys.platform == "cygwin":
517517
# pythonX.Y.dll.a is in the /usr/lib/pythonX.Y/config directory
518+
self.compiler.shared_lib_extension = ".dll.a"
518519
_add_directory(
519520
library_dirs,
520521
os.path.join(

0 commit comments

Comments
 (0)