Skip to content
5 changes: 5 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ environment:
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "64"

- PYTHON: "C:\\Miniconda3-x64"
CONDA_PY: "37"
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "67"

install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- conda update -yq --all
Expand Down
4 changes: 2 additions & 2 deletions conda-build-all
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ def main():
'--python',
help="Set the Python version used by conda build",
metavar="PYTHON_VER",
default='27,35,36',
default='27,35,36,37',

)
p.add_argument(
'--numpy',
help="Set the NumPy version used by conda build",
metavar="NUMPY_VER",
default='1.10,1.11,1.12',
default='1.13,1.14,1.15',
Copy link
Member

Choose a reason for hiding this comment

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

@Lnaden : It looks like conda-forge is actively building numpy 1.9, 1.11, and 1.15 for Python 3.7 now:
https://anaconda.org/conda-forge/numpy/files

They're have also built numpy 1.10, 1.12, 1.13, and 1.14 for Python 2.7, 3.5, and 3.6.

This is a pretty weird combination.

)
p.add_argument(
'-v', '--verbose',
Expand Down
2 changes: 1 addition & 1 deletion devtools/docker-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ conda config --add channels omnia/label/dev

# Enable conda
#source /opt/docker/bin/entrypoint_source
for PY_BUILD_VERSION in "27" "35" "36"; do
for PY_BUILD_VERSION in "27" "35" "36" "37"; do
/io/conda-build-all -vvv --python $PY_BUILD_VERSION $UPLOAD -- /io/*
done

Expand Down