From 1a8bc417deb54bb794522d81636551bb1cc16888 Mon Sep 17 00:00:00 2001 From: Daniel Petry Date: Tue, 4 Apr 2023 14:00:20 +0200 Subject: [PATCH 1/2] bump build number --- recipe/conda_build_config.yaml | 5 ++++- recipe/meta.yaml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml index 769054307..d69b15570 100644 --- a/recipe/conda_build_config.yaml +++ b/recipe/conda_build_config.yaml @@ -10,4 +10,7 @@ MACOSX_SDK_VERSION: # [osx and x86_64] - 10.14 # [osx and x86_64] CONDA_BUILD_SYSROOT: # [osx and x86_64] - /opt/MacOSX10.14.sdk # [osx and x86_64] - +c_compiler_version: + - 7 +cxx_compiler_version: + - 7 diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 33c023a97..604189a0d 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -4,7 +4,7 @@ {% set ver2 = '.'.join(version.split('.')[0:2]) %} {% set ver2nd = ''.join(version.split('.')[0:2]) %} {% set ver3nd = ''.join(version.split('.')[0:3]) %} -{% set build_number = "0" %} +{% set build_number = "1" %} {% set channel_targets = ('abc', 'def') %} # this is just for the initial build, to break dependencies with python -> pip -> libpython-static {% set bootstrap = "false" %} From 500065e6b217a1f86b446e93bae31f1d41ffc4fd Mon Sep 17 00:00:00 2001 From: Daniel Petry Date: Tue, 4 Apr 2023 14:05:12 +0200 Subject: [PATCH 2/2] Only do it for linux --- recipe/conda_build_config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/conda_build_config.yaml b/recipe/conda_build_config.yaml index d69b15570..2c0a5156b 100644 --- a/recipe/conda_build_config.yaml +++ b/recipe/conda_build_config.yaml @@ -11,6 +11,6 @@ MACOSX_SDK_VERSION: # [osx and x86_64] CONDA_BUILD_SYSROOT: # [osx and x86_64] - /opt/MacOSX10.14.sdk # [osx and x86_64] c_compiler_version: - - 7 + - 7 # [linux] cxx_compiler_version: - - 7 + - 7 # [linux]