Merge pull request #1209 from RobinD42/use-pathlib-touch

Use pathlib2 to implement cmd_touch
This commit is contained in:
Robin Dunn
2019-04-17 19:34:09 -07:00
committed by GitHub
2 changed files with 6 additions and 1 deletions

View File

@@ -27,6 +27,8 @@ import tarfile
import tempfile
import datetime
import pathlib2
from distutils.dep_util import newer, newer_group
from buildtools.config import Config, msg, opj, posixjoin, loadETG, etg2sip, findCmd, \
phoenixDir, wxDir, copyIfNewer, copyFile, \
@@ -1181,7 +1183,9 @@ def cmd_sip(options, args):
def cmd_touch(options, args):
cmdTimer = CommandTimer('touch')
pwd = pushDir(phoenixDir())
runcmd('touch etg/*.py')
etg = pathlib2.Path('etg')
for item in etg.glob('*.py'):
item.touch()

View File

@@ -11,3 +11,4 @@ pytest-xdist
pytest-timeout
numpy
pillow
pathlib2