We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17caadc commit 63e884eCopy full SHA for 63e884e
3 files changed
docs/changelog/2141.feature.rst
@@ -0,0 +1 @@
1
+add libffi-7.dll to the hard-coded list of dlls for PyPy
src/virtualenv/create/via_global_ref/builtin/pypy/pypy2.py
@@ -112,7 +112,7 @@ def modules(cls):
112
113
@classmethod
114
def _shared_libs(cls):
115
- return ["libpypy-c.dll"]
+ return ["libpypy-c.dll", "libffi-7.dll"]
116
117
118
def sources(cls, interpreter):
src/virtualenv/create/via_global_ref/builtin/pypy/pypy3.py
@@ -62,4 +62,4 @@ def bin_dir(self):
62
63
64
65
- return ["libpypy3-c.dll"]
+ return ["libpypy3-c.dll", "libffi-7.dll"]
0 commit comments