diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2018-09-16 11:07:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-16 11:07:26 -0400 |
commit | d00313856696b00710b8cf8052569d38c2536580 (patch) | |
tree | 0d31d33e2d531d127537ea121b63e34b65fa23a8 /setuptools/command/egg_info.py | |
parent | c5592a3c38f6d3ccfa81dcae9c457a150635d51c (diff) | |
parent | 47874756915a9a757f81d87f32ef5bfa2a333a26 (diff) | |
download | python-setuptools-git-d00313856696b00710b8cf8052569d38c2536580.tar.gz |
Merge pull request #1427 from stephenfin/touch-egg-info-directory
Touch 'egg-info' directory
Diffstat (limited to 'setuptools/command/egg_info.py')
-rw-r--r-- | setuptools/command/egg_info.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index 74350cbd..bd116e1f 100644 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -281,6 +281,7 @@ class egg_info(InfoCommon, Command): def run(self): self.mkpath(self.egg_info) + os.utime(self.egg_info, None) installer = self.distribution.fetch_build_egg for ep in iter_entry_points('egg_info.writers'): ep.require(installer=installer) |