Skip to content

Commit

Permalink
Remove Linux pyfastcopy (#3412)
Browse files Browse the repository at this point in the history
Fixes #3395
  • Loading branch information
rxxg committed Feb 26, 2020
1 parent 68a2f34 commit d7d5d8f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
9 changes: 0 additions & 9 deletions dvc/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,6 @@
speedcopy.patch_copyfile()
except ImportError:
pass
else:
import sys

if sys.version_info < (3, 8):
try:
# Importing the module monkey-patches shutil.copyfile
import pyfastcopy # noqa: F401
except ImportError:
pass


class System(object):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def run(self):
"pywin32>=225; sys_platform == 'win32'",
"networkx>=2.1,<2.4",
"pydot>=1.2.4",
"speedcopy>=2.0.1",
"speedcopy>=2.0.1; sys_platform == 'win32'",
"flatten_json>=0.1.6",
"texttable>=0.5.2",
]
Expand Down

0 comments on commit d7d5d8f

Please sign in to comment.