Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dumux-repositories
dumux
Commits
41e37366
Commit
41e37366
authored
2 years ago
by
Bernd Flemisch
Browse files
Options
Downloads
Patches
Plain Diff
[bin] replace call to copy_tree from distutils by copytree from shutil
parent
950e80dd
No related branches found
No related tags found
1 merge request
!3227
Replace call to copy_tree from distutils by copytree from shutil
Pipeline
#19526
passed
2 years ago
Stage: check-status
Stage: trigger dumux pipelines
+2
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bin/extract_as_new_module.py
+2
-2
2 additions, 2 deletions
bin/extract_as_new_module.py
with
2 additions
and
2 deletions
bin/extract_as_new_module.py
+
2
−
2
View file @
41e37366
...
@@ -15,7 +15,7 @@ import textwrap
...
@@ -15,7 +15,7 @@ import textwrap
import
itertools
import
itertools
import
glob
import
glob
import
multiprocessing
as
mp
import
multiprocessing
as
mp
from
distutils.dir_
util
import
copy
_
tree
from
sh
util
import
copytree
from
pathlib
import
Path
from
pathlib
import
Path
from
functools
import
partial
from
functools
import
partial
...
@@ -145,7 +145,7 @@ def detectNewModule():
...
@@ -145,7 +145,7 @@ def detectNewModule():
def
copySubFolders
(
subFolder
,
oldPath
,
newPath
):
def
copySubFolders
(
subFolder
,
oldPath
,
newPath
):
"""
Copy folders from old path to new path
"""
"""
Copy folders from old path to new path
"""
for
sub
in
subFolder
:
for
sub
in
subFolder
:
copy
_
tree
(
os
.
path
.
join
(
oldPath
,
sub
),
os
.
path
.
join
(
newPath
,
sub
))
copytree
(
os
.
path
.
join
(
oldPath
,
sub
),
os
.
path
.
join
(
newPath
,
sub
))
def
addFoldersToCMakeLists
(
modulePath
,
subFolder
):
def
addFoldersToCMakeLists
(
modulePath
,
subFolder
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment