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
808 B

  1. diff --git a/setuptools/dist.py b/setuptools/dist.py
  2. index 7785541..23108c7 100644
  3. --- a/setuptools/dist.py
  4. +++ b/setuptools/dist.py
  5. @@ -18,7 +18,6 @@ from setuptools.extern.six.moves import map
  6. from pkg_resources.extern import packaging
  7. from setuptools.depends import Require
  8. -from setuptools import windows_support
  9. import pkg_resources
  10. @@ -335,7 +334,6 @@ class Distribution(_Distribution):
  11. egg_cache_dir = os.path.join(os.curdir, '.eggs')
  12. if not os.path.exists(egg_cache_dir):
  13. os.mkdir(egg_cache_dir)
  14. - windows_support.hide_file(egg_cache_dir)
  15. readme_txt_filename = os.path.join(egg_cache_dir, 'README.txt')
  16. with open(readme_txt_filename, 'w') as f:
  17. f.write('This directory contains eggs that were downloaded '