Skip to content

Commit 519fc54

Browse files
Update CI to use Python 3.7.
There's an open issue with setup-python action with Python 3.6 on Ubuntu. For details, see actions/setup-python#544
1 parent d189130 commit 519fc54

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/integ-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v2
13-
- name: Set up Python 3.6
13+
- name: Set up Python 3.7
1414
uses: actions/setup-python@v2
1515
with:
16-
python-version: 3.6
16+
python-version: 3.7
1717
- name: Install Python dependencies
1818
run: pip install -e .[test,dev]
1919
- name: Run Integration Tests

.github/workflows/quality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
10-
- name: Set up Python 3.6
10+
- name: Set up Python 3.7
1111
uses: actions/setup-python@v2
1212
with:
13-
python-version: 3.6
13+
python-version: 3.7
1414
- name: Install Python dependencies
1515
run: pip install -e .[quality]
1616
- name: Run Quality check

.github/workflows/unit-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
10-
- name: Set up Python 3.6
10+
- name: Set up Python 3.7
1111
uses: actions/setup-python@v2
1212
with:
13-
python-version: 3.6
13+
python-version: 3.7
1414
- name: Install Python dependencies
1515
run: pip install -e .[test,dev]
1616
- name: Run Unit Tests

0 commit comments

Comments
 (0)