Skip to content

Commit

Permalink
Replace deprecated distutils (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
dyastremsky authored Oct 31, 2023
1 parent ab8ac0c commit 4da38e1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/python/library/build_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
import shutil
import subprocess
import sys
from distutils.dir_util import copy_tree
from tempfile import mkstemp


Expand All @@ -51,7 +50,7 @@ def touch(path):


def cpdir(src, dest):
copy_tree(src, dest, preserve_symlinks=1)
shutil.copytree(src, dest, symlinks=True, dirs_exist_ok=True)


def sed(pattern, replace, source, dest=None):
Expand Down

0 comments on commit 4da38e1

Please sign in to comment.