From c1fe7d04f018ea3295e4431fb262f6110e95a04a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filipe=20Brand=C3=A3o?= Date: Fri, 23 Feb 2024 14:47:23 +0000 Subject: [PATCH] nlwpy: Build for all platforms on the first stage --- azure-pipelines.yml | 6 +++--- nl-writer2/setup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f8b1eda1e..86f4ef3fa 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -47,9 +47,9 @@ stages: - task: PublishBuildArtifacts@1 inputs: {pathtoPublish: 'nl-writer2/nlwpy/wheelhouse'} -- stage: qemu - displayName: 'Build with QEMU' - jobs: +# - stage: qemu +# displayName: 'Build with QEMU' +# jobs: - job: qemu pool: {vmImage: 'Ubuntu-20.04'} strategy: diff --git a/nl-writer2/setup.py b/nl-writer2/setup.py index 87e14e5fb..3148ca749 100644 --- a/nl-writer2/setup.py +++ b/nl-writer2/setup.py @@ -4,7 +4,7 @@ import pybind11 import glob -__version__ = "0.0.1" +__version__ = "0.0.1b0" # The main interface is through Pybind11Extension. # * You can add cxx_std=11/14/17, and then build_ext can be removed.