You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
867 B

  1. diff --git a/setuptools/dist.py b/setuptools/dist.py
  2. index 6b9d350..1350e8a 100644
  3. --- a/setuptools/dist.py
  4. +++ b/setuptools/dist.py
  5. @@ -15,7 +15,6 @@ from distutils.errors import (DistutilsOptionError, DistutilsPlatformError,
  6. from setuptools.depends import Require
  7. from setuptools.compat import basestring, PY2
  8. -from setuptools import windows_support
  9. import pkg_resources
  10. def _get_unpatched(cls):
  11. @@ -310,7 +309,6 @@ class Distribution(_Distribution):
  12. egg_cache_dir = os.path.join(os.curdir, '.eggs')
  13. if not os.path.exists(egg_cache_dir):
  14. os.mkdir(egg_cache_dir)
  15. - windows_support.hide_file(egg_cache_dir)
  16. readme_txt_filename = os.path.join(egg_cache_dir, 'README.txt')
  17. with open(readme_txt_filename, 'w') as f:
  18. f.write('This directory contains eggs that were downloaded '