Use Sybren's fork of CacheControl to fix caching issue.

We need my clone until pull request #125 has been merged & released.
See https://github.com/ionrock/cachecontrol/pull/125 for more info.
This commit is contained in:
Sybren A. Stüvel 2016-06-17 15:42:27 +02:00
parent 82c7560c7b
commit 988dc72ba1

View File

@ -83,9 +83,13 @@ class BuildWheels(Command):
# Build CacheControl. # Build CacheControl.
if not list(self.wheels_path.glob('CacheControl*.whl')): if not list(self.wheels_path.glob('CacheControl*.whl')):
log.info('Building CacheControl in %s', self.cachecontrol_path) log.info('Building CacheControl in %s', self.cachecontrol_path)
# self.git_clone(self.cachecontrol_path,
# 'https://github.com/ionrock/cachecontrol.git',
# 'v%s' % requirements['CacheControl'][1])
# FIXME: we need my clone until pull request #125 has been merged & released
self.git_clone(self.cachecontrol_path, self.git_clone(self.cachecontrol_path,
'https://github.com/ionrock/cachecontrol.git', 'https://github.com/sybrenstuvel/cachecontrol.git',
'v%s' % requirements['CacheControl'][1]) 'sybren-filecache-delete-crash-fix')
self.build_copy_wheel(self.cachecontrol_path) self.build_copy_wheel(self.cachecontrol_path)
# Ensure that the wheels are added to the data files. # Ensure that the wheels are added to the data files.