We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39f75e7 commit b00312dCopy full SHA for b00312d
zappa/core.py
@@ -19,7 +19,6 @@
19
import uuid
20
import zipfile
21
from builtins import bytes, int
22
-from distutils.dir_util import copy_tree
23
from io import open
24
from pathlib import Path
25
from typing import Optional
@@ -687,7 +686,7 @@ def splitpath(path):
687
686
if egg_links:
688
self.copy_editable_packages(egg_links, temp_package_path)
689
690
- copy_tree(temp_package_path, temp_project_path, update=True)
+ copytree(temp_package_path, temp_project_path, metadata=False, symlinks=False)
691
692
# Then the pre-compiled packages..
693
if use_precompiled_packages:
0 commit comments