Upgrade blender-asset-tracer 0.2-dev → 0.3

This commit is contained in:
Sybren A. Stüvel 2018-07-03 15:12:36 +02:00
parent 394395a7f5
commit 40c31e8be2
2 changed files with 2 additions and 11 deletions

View File

@ -3,7 +3,7 @@
lockfile==0.12.2
pillarsdk==1.6.1
wheel==0.29.0
blender-asset-tracer>=0.2
blender-asset-tracer>=0.3
# Secondary requirements:
asn1crypto==0.24.0

View File

@ -37,8 +37,7 @@ sys.dont_write_bytecode = True
# Download wheels from pypi. The specific versions are taken from requirements.txt
wheels = [
'lockfile', 'pillarsdk',
# 'blender-asset-tracer',
'lockfile', 'pillarsdk', 'blender-asset-tracer',
]
@ -115,14 +114,6 @@ class BuildWheels(Command):
'sybren-filecache-delete-crash-fix')
self.build_copy_wheel(self.cachecontrol_path)
# Build development version of BAT.
if not list(self.wheels_path.glob('blender-asset-tracer*.whl')):
log.info('Building BAT in %s', self.bat_path)
self.git_clone(self.bat_path,
'https://gitlab.com/dr.sybren/blender-asset-tracer.git',
'master')
self.build_copy_wheel(self.bat_path)
# Ensure that the wheels are added to the data files.
self.distribution.data_files.append(
('blender_cloud/wheels', (str(p) for p in self.wheels_path.glob('*.whl')))