Skip to content

Commit 2b0815f

Browse files
authored
Merge pull request #1268 from AntoinePrv/patch-2
Fix MACOSX_SDK_VERSION parsed as float
2 parents 4c37370 + 933e275 commit 2b0815f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/maintainer/knowledge_base.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,7 @@ To use a new SDK, add the following in ``recipe/conda_build_config.yaml``
966966
967967
# Please consult conda-forge/core before doing this
968968
MACOSX_SDK_VERSION: # [osx and x86_64]
969-
- 10.12 # [osx and x86_64]
969+
- "10.12" # [osx and x86_64]
970970
971971
Note that this should be done if the error you are getting says that a header is not
972972
found or a macro is not defined. This will make your package compile with a newer SDK
@@ -984,9 +984,9 @@ is available only for macOS x.x, then do the following in ``recipe/conda_build_c
984984
985985
# Please consult conda-forge/core before doing this
986986
MACOSX_DEPLOYMENT_TARGET: # [osx and x86_64]
987-
- 10.12 # [osx and x86_64]
987+
- "10.12" # [osx and x86_64]
988988
MACOSX_SDK_VERSION: # [osx and x86_64]
989-
- 10.12 # [osx and x86_64]
989+
- "10.12" # [osx and x86_64]
990990
991991
992992
In ``recipe/meta.yaml``, add the following to ensure that the user's system is compatible.

0 commit comments

Comments
 (0)