From ed68ed3faa99d416432ae76302f3ee89a064f6db 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 | 4 ---- nl-writer2/setup.py | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f8b1eda1e..ef4c90780 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -46,10 +46,6 @@ stages: displayName: Build wheels - task: PublishBuildArtifacts@1 inputs: {pathtoPublish: 'nl-writer2/nlwpy/wheelhouse'} - -- 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.