Skip to content
This repository was archived by the owner on Dec 4, 2018. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@ install:
- cmd: set PATH=%PATH%;%CONDA_INSTALL_LOCN%;%CONDA_INSTALL_LOCN%\scripts
- cmd: set PYTHONUNBUFFERED=1

- cmd: conda list
- cmd: conda install --yes ruamel_yaml
- cmd: conda list
- cmd: conda install --yes --force python=3.5
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

conda-build-all needs to be updated to work with Py36. Force-downgrading python to Py35 introduces other problems into the builds.

- cmd: conda list


- cmd: conda config --add channels scitools
- cmd: conda config --set show_channel_urls yes

Expand Down
6 changes: 3 additions & 3 deletions iris/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "1.11.0" %}
{% set version = "1.12.0" %}

package:
name: iris
Expand All @@ -9,8 +9,8 @@ source:
git_tag: v{{ version }}

build:
number: 2
skip: True # [py35]
number: 0
skip: True # [py35 or osx or win]
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need fixed OSX builds and Windows builds, not ignored ones...


requirements:
build:
Expand Down