Skip to content

Commit a86146c

Browse files
Upgrade CI to Py38. (#497)
1 parent 2675297 commit a86146c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v1
1111
- uses: actions/setup-python@v1
1212
with:
13-
python-version: '3.6'
13+
python-version: '3.8'
1414
architecture: 'x64'
1515
- name: Install Lint tools
1616
run: pip install --upgrade pip setuptools; pip install -r requirements.txt;
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@v1
2626
- uses: actions/setup-python@v1
2727
with:
28-
python-version: '3.6'
28+
python-version: '3.8'
2929
architecture: 'x64'
3030
- name: Install Format tools
3131
run: pip install --upgrade pip setuptools; pip install -r requirements.txt; sudo apt-get install -y clang-format-6.0
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/checkout@v1
4141
- uses: actions/setup-python@v1
4242
with:
43-
python-version: '3.6'
43+
python-version: '3.8'
4444
architecture: 'x64'
4545
- name: Install Bazel on CI
4646
run: ./scripts/ci_install.sh
@@ -60,7 +60,7 @@ jobs:
6060
- uses: actions/checkout@v1
6161
- uses: actions/setup-python@v1
6262
with:
63-
python-version: '3.6'
63+
python-version: '3.8'
6464
architecture: 'x64'
6565
- name: Install Bazel on CI
6666
run: ./scripts/ci_install.sh
@@ -78,7 +78,7 @@ jobs:
7878
- uses: actions/checkout@v1
7979
- uses: actions/setup-python@v1
8080
with:
81-
python-version: '3.6'
81+
python-version: '3.8'
8282
architecture: 'x64'
8383
- name: Install Bazel on CI
8484
run: ./scripts/ci_install.sh
@@ -96,7 +96,7 @@ jobs:
9696
- uses: actions/checkout@v1
9797
- uses: actions/setup-python@v1
9898
with:
99-
python-version: '3.6'
99+
python-version: '3.8'
100100
architecture: 'x64'
101101
- name: Install notebook dependencies
102102
run: pip install --upgrade pip seaborn==0.10.0

.github/workflows/cirq_compatibility.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v1
1313
- uses: actions/setup-python@v1
1414
with:
15-
python-version: '3.7'
15+
python-version: '3.8'
1616
architecture: 'x64'
1717
- name: Install Bazel on CI
1818
run: ./scripts/ci_install.sh

scripts/ci_validate_tutorials.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# ==============================================================================
1616

1717
# Run the tutorials using the installed pip package
18-
pip install jupyter nbformat==4.4.0 nbconvert==5.6.1
18+
pip install jupyter nbformat==4.4.0 nbconvert==5.5.0
1919
# Workaround for ipykernel - see https://github.com/ipython/ipykernel/issues/422
2020
pip install ipykernel==5.1.1
2121
# Leave the quantum directory, otherwise errors may occur

0 commit comments

Comments
 (0)