Skip to content
This repository was archived by the owner on Feb 14, 2023. It is now read-only.

Python 3.5 for 0.22.X #49

Merged
merged 2 commits into from
Mar 4, 2020
Merged
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
17 changes: 17 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ jobs:
name: windows
vmImage: vs2017-win2016
matrix:
py_3.5_32:
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "x86"
NP_BUILD_DEP: "1.11.0"
py_3.5_64:
PYTHON_VERSION: "3.5.x"
NP_BUILD_DEP: "1.11.0"
py_3.6_32:
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "x86"
Expand Down Expand Up @@ -46,6 +53,13 @@ jobs:
name: linux
vmImage: ubuntu-16.04
matrix:
py_3.5_32:
MB_PYTHON_VERSION: "3.5"
PLAT: "i686"
NP_BUILD_DEP: "numpy==1.11.0"
py_3.5_64:
MB_PYTHON_VERSION: "3.5"
Copy link
Contributor

Choose a reason for hiding this comment

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

I think we should force the build against the oldest supported of numpy for Python 3.5.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes but the existing ones are not following oldest supported numpy. I thought that was intentional

Copy link
Contributor

Choose a reason for hiding this comment

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

It's probably because I used the version numbers for 0.23 and not 0.22.X

Copy link
Contributor

Choose a reason for hiding this comment

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

Anyway that should be fine as it is.

NP_BUILD_DEP: "numpy==1.11.0"
py_3.6_32:
MB_PYTHON_VERSION: "3.6"
PLAT: "i686"
Expand Down Expand Up @@ -75,6 +89,9 @@ jobs:
name: macOS
vmImage: xcode9-macos10.13
matrix:
py_3.5_64:
MB_PYTHON_VERSION: "3.5"
NP_BUILD_DEP: "numpy==1.11.0"
py_3.6_64:
MB_PYTHON_VERSION: "3.6"
NP_BUILD_DEP: "numpy==1.13.3"
Expand Down