Skip to content

Commit c1ea2f7

Browse files
authored
Merge pull request scikit-build#40 from scikit-build/support-python-37
ci: Update appveyor/circleci/travis to build for python 3.7
2 parents f701056 + 0a07ebc commit c1ea2f7

File tree

3 files changed

+36
-9
lines changed

3 files changed

+36
-9
lines changed

Diff for: .circleci/config.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ jobs:
3939
docker:
4040
- image: dockcross/manylinux-x64
4141
<<: *ci-steps
42+
43+
manylinux-x64_cp37-cp37m:
44+
docker:
45+
- image: dockcross/manylinux-x64
46+
<<: *ci-steps
4247
#
4348
# x86
4449
#
@@ -67,6 +72,10 @@ jobs:
6772
- image: dockcross/manylinux-x86
6873
<<: *ci-steps
6974

75+
manylinux-x86_cp37-cp37m:
76+
docker:
77+
- image: dockcross/manylinux-x86
78+
<<: *ci-steps
7079

7180
workflows:
7281
version: 2
@@ -77,9 +86,11 @@ workflows:
7786
- manylinux-x64_cp34-cp34m
7887
- manylinux-x64_cp35-cp35m
7988
- manylinux-x64_cp36-cp36m
89+
- manylinux-x64_cp37-cp37m
8090

8191
- manylinux-x86_cp27-cp27m
8292
- manylinux-x86_cp27-cp27mu
8393
- manylinux-x86_cp34-cp34m
8494
- manylinux-x86_cp35-cp35m
85-
- manylinux-x86_cp36-cp36m
95+
- manylinux-x86_cp36-cp36m
96+
- manylinux-x86_cp37-cp37m

Diff for: .travis.yml

+14-8
Original file line numberDiff line numberDiff line change
@@ -11,29 +11,35 @@ matrix:
1111
- os: osx
1212
language: generic
1313
env:
14-
- PYTHON_VERSION=3.6.1
14+
- PYTHON_VERSION=3.7.0
1515

1616
- os: osx
1717
language: generic
1818
env:
19-
- PYTHON_VERSION=3.5.2
19+
- PYTHON_VERSION=3.6.5
2020

2121
- os: osx
2222
language: generic
2323
env:
24-
- PYTHON_VERSION=3.4.5
24+
- PYTHON_VERSION=3.5.5
2525

2626
- os: osx
2727
language: generic
2828
env:
29-
- PYTHON_VERSION=2.7.12
29+
- PYTHON_VERSION=3.4.8
30+
31+
- os: osx
32+
language: generic
33+
env:
34+
- PYTHON_VERSION=2.7.15
3035

3136
cache:
3237
directories:
33-
- $HOME/.pyenv/versions/3.6.1
34-
- $HOME/.pyenv/versions/3.5.2
35-
- $HOME/.pyenv/versions/3.4.5
36-
- $HOME/.pyenv/versions/2.7.12
38+
- $HOME/.pyenv/versions/3.7.0
39+
- $HOME/.pyenv/versions/3.6.5
40+
- $HOME/.pyenv/versions/3.5.5
41+
- $HOME/.pyenv/versions/3.4.8
42+
- $HOME/.pyenv/versions/2.7.15
3743
- $HOME/downloads
3844

3945
before_install:

Diff for: appveyor.yml

+10
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,16 @@ environment:
4949
PYTHON_ARCH: "64"
5050
BLOCK: "0"
5151

52+
- PYTHON_DIR: "C:\\Python37"
53+
PYTHON_VERSION: "3.7.x"
54+
PYTHON_ARCH: "64"
55+
BLOCK: "0"
56+
57+
- PYTHON_DIR: "C:\\Python37-x64"
58+
PYTHON_VERSION: "3.7.x"
59+
PYTHON_ARCH: "64"
60+
BLOCK: "0"
61+
5262
GIRDER_TOKEN:
5363
secure: qVsf5rslUEw6KTjGI+uF4hEtP9xkBzZiRmLGsBZN5I32/hNccjih53ydb4tegdnK
5464

0 commit comments

Comments
 (0)