Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit aee37c2

Browse files
committed
Add Python 3.5 back in
1 parent 6f28d62 commit aee37c2

File tree

2 files changed

+28
-6
lines changed

2 files changed

+28
-6
lines changed

.appveyor.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ environment:
1414
MINGW_64: C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin
1515
OPENBLAS_32: "https://3f23b170c54c2533c070-1c8a9b3114517dc5fe17b7c3f8c63a43.ssl.cf2.rackcdn.com/openblas-v0.3.7-win32-gcc_7_1_0.zip"
1616
OPENBLAS_64: "https://3f23b170c54c2533c070-1c8a9b3114517dc5fe17b7c3f8c63a43.ssl.cf2.rackcdn.com/openblas-v0.3.7-win_amd64-gcc_7_1_0.zip"
17+
1718
CYTHON_BUILD_DEP: Cython
1819
TEST_MODE: fast
1920
APPVEYOR_SAVE_CACHE_ON_ERROR: true
@@ -22,10 +23,18 @@ environment:
2223
WHEELHOUSE_UPLOADER_SECRET:
2324
secure:
2425
9s0gdDGnNnTt7hvyNpn0/ZzOMGPdwPp2SewFTfGzYk7uI+rdAN9rFq2D1gAP4NQh
25-
BUILD_COMMIT: master
26+
BUILD_COMMIT: ff3df08438d570b0ccdda3f8a008278d8a4ad394
2627
DAILY_COMMIT: master
2728

2829
matrix:
30+
- PYTHON: C:\Python35
31+
PYTHON_VERSION: 3.5
32+
PYTHON_ARCH: 32
33+
34+
- PYTHON: C:\Python35-x64
35+
PYTHON_VERSION: 3.5
36+
PYTHON_ARCH: 64
37+
2938
- PYTHON: C:\Python36
3039
PYTHON_VERSION: 3.6
3140
PYTHON_ARCH: 32
@@ -50,6 +59,7 @@ environment:
5059
PYTHON_VERSION: 3.8
5160
PYTHON_ARCH: 64
5261

62+
5363
init:
5464
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
5565
- "ECHO \"%APPVEYOR_SCHEDULED_BUILD%\""

.travis.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ env:
22
global:
33
- REPO_DIR=numpy
44
# Also see DAILY_COMMIT below
5-
- BUILD_COMMIT=master
5+
- BUILD_COMMIT=ff3df08438d570b0ccdda3f8a008278d8a4ad394
66
- BUILD_DEPENDS=cython
77
- TEST_DEPENDS=pytest
88
- PLAT=x86_64
@@ -22,16 +22,19 @@ python: 3.5
2222
sudo: required
2323
dist: trusty
2424
services: docker
25-
# Force xcode 6.4 image to work round
26-
# https://github.com/python-pillow/pillow-wheels/issues/45
27-
# sync with multibuild/.travis.yml 2019-08-21
28-
osx_image: xcode10.1
2925

3026
matrix:
3127
exclude:
3228
# Exclude the default Python 3.5 build
3329
- python: 3.5
3430
include:
31+
- os: linux
32+
env:
33+
- MB_PYTHON_VERSION=3.5
34+
- os: linux
35+
env:
36+
- MB_PYTHON_VERSION=3.5
37+
- PLAT=i686
3538
- os: linux
3639
env:
3740
- MB_PYTHON_VERSION=3.6
@@ -55,16 +58,25 @@ matrix:
5558
- PLAT=i686
5659
- os: osx
5760
language: generic
61+
osx_image: xcode6.4
62+
env:
63+
- MB_PYTHON_VERSION=3.5
64+
- MB_PYTHON_OSX_VER=10.6
65+
- os: osx
66+
language: generic
67+
osx_image: xcode10.1
5868
env:
5969
- MB_PYTHON_VERSION=3.6
6070
- MB_PYTHON_OSX_VER=10.9
6171
- os: osx
6272
language: generic
73+
osx_image: xcode10.1
6374
env:
6475
- MB_PYTHON_VERSION=3.7
6576
- MB_PYTHON_OSX_VER=10.9
6677
- os: osx
6778
language: generic
79+
osx_image: xcode10.1
6880
env:
6981
- MB_PYTHON_VERSION=3.8
7082
- MB_PYTHON_OSX_VER=10.9

0 commit comments

Comments
 (0)