Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ package_dir =
include_package_data = True
install_requires =
setuptools-git
setuptools
jinja2
pyyaml
progressbar2
Expand Down
5 changes: 3 additions & 2 deletions src/elf_diff/auxiliary.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@
import inspect
import os
import re
from distutils import dir_util
from typing import List, Set

from setuptools import distutils


def setIntersection(l1: Set, l2: Set) -> List:
"""Return a list that is a sorted set intersection of two sets"""
Expand Down Expand Up @@ -62,7 +63,7 @@ def getRelpath(html_output_file: str, target_dir: str) -> str:

def recursiveCopy(source_dir: str, target_dir: str) -> None:
"""Copy the content of a source directory recursively (including subdirectories) to a target directory"""
dir_util.copy_tree(source_dir, target_dir)
distutils.dir_util.copy_tree(source_dir, target_dir)


def isNameToken(str_: str) -> bool:
Expand Down