From 40c31e8be268d7403048e52f1483177c47796b95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 3 Jul 2018 15:12:36 +0200 Subject: [PATCH] =?UTF-8?q?Upgrade=20blender-asset-tracer=200.2-dev=20?= =?UTF-8?q?=E2=86=92=200.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- requirements.txt | 2 +- setup.py | 11 +---------- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/requirements.txt b/requirements.txt index 6ec4178..9b3be5c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/setup.py b/setup.py index e4beb3a..5428058 100755 --- a/setup.py +++ b/setup.py @@ -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')))