Skip to content

Commit 29a9f57

Browse files
committed
ci: Run tests against python3.7 instead of python3.6
1 parent a4cd36b commit 29a9f57

File tree

12 files changed

+114
-114
lines changed

12 files changed

+114
-114
lines changed

.github/workflows/integrate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: windows-latest
1616
strategy:
1717
matrix:
18-
python-version: [2.7, 3.6]
18+
python-version: [2.7, 3.7]
1919
steps:
2020
- name: Checkout repository
2121
uses: actions/checkout@v2
@@ -66,7 +66,7 @@ jobs:
6666
runs-on: ubuntu-latest
6767
strategy:
6868
matrix:
69-
python-version: [2.7, 3.6]
69+
python-version: [2.7, 3.7]
7070
steps:
7171
- name: Checkout repository
7272
uses: actions/checkout@v2
@@ -117,7 +117,7 @@ jobs:
117117
runs-on: ubuntu-latest
118118
strategy:
119119
matrix:
120-
python-version: [2.7, 3.6]
120+
python-version: [2.7, 3.7]
121121
steps:
122122
- name: Checkout repository
123123
uses: actions/checkout@v2

.github/workflows/validate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [2.7, 3.6]
18+
python-version: [2.7, 3.7]
1919
steps:
2020
- name: Checkout repository
2121
uses: actions/checkout@v2
@@ -93,7 +93,7 @@ jobs:
9393
runs-on: windows-latest
9494
strategy:
9595
matrix:
96-
python-version: [2.7, 3.6]
96+
python-version: [2.7, 3.7]
9797
steps:
9898
- name: Checkout repository
9999
uses: actions/checkout@v2
@@ -146,7 +146,7 @@ jobs:
146146
runs-on: ubuntu-latest
147147
strategy:
148148
matrix:
149-
python-version: [2.7, 3.6]
149+
python-version: [2.7, 3.7]
150150
steps:
151151
- name: Checkout repository
152152
uses: actions/checkout@v2

example/serverless.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ service: sls-py-req-test
22

33
provider:
44
name: aws
5-
runtime: python3.6
5+
runtime: python3.7
66

77
plugins:
88
- serverless-python-requirements

example_native_deps/serverless.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ service: sls-py-req-test
22

33
provider:
44
name: aws
5-
runtime: python3.6
5+
runtime: python3.7
66

77
plugins:
88
- serverless-python-requirements

0 commit comments

Comments
 (0)