diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2017-06-29 13:54:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-29 13:54:57 -0400 |
commit | 6c2240a46b47c56667bd6d34066640e0864ccd15 (patch) | |
tree | 6f34cf52c9ab46cb0d92571689ef089b1b1e4f2d | |
parent | d6095a9d187ebee569bac019189594dd014b462c (diff) | |
parent | 4d6ad4b142c3e698461d08f14985f7d0582609aa (diff) | |
download | astroconda-contrib-6c2240a46b47c56667bd6d34066640e0864ccd15.tar.gz |
Merge pull request #233 from rendinam/invert_skip_logic
Invert skip logic to match local test demonstration
-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' |