From 6990c70123417de46859e33199113d712b45311b Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Wed, 25 Mar 2020 17:19:10 +0100 Subject: [PATCH] Fix issue with smhi-pkg (#33248) * Fix issue with smhi-pkg * Update azure-pipelines-wheels.yml --- azure-pipelines-ci.yml | 4 ++-- azure-pipelines-wheels.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines-ci.yml b/azure-pipelines-ci.yml index 8fb014f80a7d..745330c630a4 100644 --- a/azure-pipelines-ci.yml +++ b/azure-pipelines-ci.yml @@ -127,7 +127,7 @@ stages: . venv/bin/activate pip install -U pip setuptools pytest-azurepipelines pytest-xdist -c homeassistant/package_constraints.txt - pip install -r requirements_test_all.txt -c homeassistant/package_constraints.txt + pip install --no-binary smhi-pkg -r requirements_test_all.txt -c homeassistant/package_constraints.txt # This is a TEMP. Eventually we should make sure our 4 dependencies drop typing. # Find offending deps with `pipdeptree -r -p typing` pip uninstall -y typing @@ -171,7 +171,7 @@ stages: . venv/bin/activate pip install -U pip setuptools wheel - pip install -r requirements_all.txt -c homeassistant/package_constraints.txt + pip install --no-binary smhi-pkg -r requirements_all.txt -c homeassistant/package_constraints.txt pip install -r requirements_test.txt -c homeassistant/package_constraints.txt - script: | . venv/bin/activate diff --git a/azure-pipelines-wheels.yml b/azure-pipelines-wheels.yml index b4ad0a556b28..77ca2a7a8661 100644 --- a/azure-pipelines-wheels.yml +++ b/azure-pipelines-wheels.yml @@ -33,7 +33,7 @@ jobs: builderVersion: '$(versionWheels)' builderApk: 'build-base;cmake;git;linux-headers;bluez-dev;libffi-dev;openssl-dev;glib-dev;eudev-dev;libxml2-dev;libxslt-dev;libpng-dev;libjpeg-turbo-dev;tiff-dev;autoconf;automake;cups-dev;gmp-dev;mpfr-dev;mpc1-dev;ffmpeg-dev;gammu-dev' builderPip: 'Cython;numpy' - skipBinary: 'aiohttp' + skipBinary: 'aiohttp,smhi-pkg' wheelsRequirement: 'requirements_wheels.txt' wheelsRequirementDiff: 'requirements_diff.txt' wheelsConstraint: 'homeassistant/package_constraints.txt'