diff options
author | Matt Rendina <mrendina@stsci.edu> | 2017-06-29 13:47:11 -0400 |
---|---|---|
committer | Matt Rendina <mrendina@stsci.edu> | 2017-06-29 13:47:11 -0400 |
commit | 4d6ad4b142c3e698461d08f14985f7d0582609aa (patch) | |
tree | f927222db5ccd40b14bce091c237575d124ff878 | |
parent | 2df72fe5bc28d93cbed30d9cf6e25a648fcf1c73 (diff) | |
download | astroconda-contrib-4d6ad4b142c3e698461d08f14985f7d0582609aa.tar.gz |
Invert skip logic
-rw-r--r-- | pyobjc-core/meta.yaml | 2 | ||||
-rw-r--r-- | pyobjc-framework-cocoa/meta.yaml | 2 | ||||
-rw-r--r-- | pyobjc-framework-quartz/meta.yaml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/pyobjc-core/meta.yaml b/pyobjc-core/meta.yaml index ac6c7b2..bf62a36 100644 --- a/pyobjc-core/meta.yaml +++ b/pyobjc-core/meta.yaml @@ -8,7 +8,7 @@ about: summary: Python<->ObjC Interoperability Module build: - skip: False [osx] + skip: True [not osx] number: {{ number }} preserve_egg_dir: 'true' diff --git a/pyobjc-framework-cocoa/meta.yaml b/pyobjc-framework-cocoa/meta.yaml index 90ca3eb..3abc490 100644 --- a/pyobjc-framework-cocoa/meta.yaml +++ b/pyobjc-framework-cocoa/meta.yaml @@ -8,7 +8,7 @@ about: summary: Wrappers for the Cocoa frameworks on Mac OS X build: - skip: False [osx] + skip: True [not osx] number: {{ number }} preserve_egg_dir: 'true' diff --git a/pyobjc-framework-quartz/meta.yaml b/pyobjc-framework-quartz/meta.yaml index dd454ab..b0303aa 100644 --- a/pyobjc-framework-quartz/meta.yaml +++ b/pyobjc-framework-quartz/meta.yaml @@ -8,7 +8,7 @@ about: summary: Wrappers for the Quartz frameworks on Mac OS X build: - skip: False [osx] + skip: True [not osx] number: {{ number }} preserve_egg_dir: 'true' |