File tree Expand file tree Collapse file tree 2 files changed +2
-13
lines changed
src/virtualenv/create/via_global_ref/builtin/pypy Expand file tree Collapse file tree 2 files changed +2
-13
lines changed Original file line number Diff line number Diff line change 1
- Fixed path collision that could lead to a PermissionError or writing to system
2
- directories when using PyPy3.8 - by :user:`mgorny`.
1
+ Remove copying prefix/lib content to the new virtualenv on PyPy3, which
2
+ conflicts with the new layout used in PyPy3.8 - by :user:`mgorny`.
Original file line number Diff line number Diff line change @@ -37,17 +37,6 @@ def _shared_libs(cls):
37
37
def to_lib (self , src ):
38
38
return self .dest / "lib" / src .name
39
39
40
- @classmethod
41
- def sources (cls , interpreter ):
42
- for src in super (PyPy3Posix , cls ).sources (interpreter ):
43
- yield src
44
- host_lib = Path (interpreter .system_prefix ) / "lib"
45
- if host_lib .exists () and host_lib .is_dir ():
46
- for path in host_lib .iterdir ():
47
- if path .is_dir ():
48
- continue
49
- yield PathRefToDest (path , dest = cls .to_lib )
50
-
51
40
52
41
class Pypy3Windows (PyPy3 , WindowsSupports ):
53
42
"""PyPy 2 on Windows"""
You can’t perform that action at this time.
0 commit comments