Skip to content

Commit dc411fb

Browse files
committed
Merge branch 'master' into release
2 parents 57fd93d + 792ba07 commit dc411fb

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

riptide/engine/abstract.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
from abc import ABC, abstractmethod
44
from typing import Tuple, Dict, Union, List, Optional
55

6-
from distutils.dir_util import copy_tree
7-
86
from riptide.config.files import path_in_project
97
from riptide.engine.results import StartStopResultStep, MultiResultQueue
108

@@ -296,7 +294,7 @@ def path_copy(self, fromm, to, project: 'Project'):
296294
if os.path.isfile(fromm):
297295
shutil.copy2(fromm, to)
298296
else:
299-
copy_tree(fromm, to)
297+
shutil.copytree(fromm, to, dirs_exist_ok=True)
300298

301299
@abstractmethod
302300
def performance_value_for_auto(self, key: str, platform: str) -> bool:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.8.1'
1+
__version__ = '0.8.2'
22
from setuptools import setup, find_packages
33

44
# README read-in

0 commit comments

Comments
 (0)