Skip to content

Commit 5c3125e

Browse files
Add py39 testing to CI test matrix. (#4296)
Adds py39 to windows, mac and linux pytest matrices. Fixes #3772 Fixes #3769
1 parent d850bd0 commit 5c3125e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
name: Pytest Ubuntu
148148
strategy:
149149
matrix:
150-
python-version: [ '3.6', '3.7', '3.8' ]
150+
python-version: [ '3.6', '3.7', '3.8', '3.9' ]
151151
runs-on: ubuntu-20.04
152152
steps:
153153
- uses: actions/checkout@v2
@@ -217,7 +217,7 @@ jobs:
217217
name: Pytest Windows
218218
strategy:
219219
matrix:
220-
python-version: [ '3.7', '3.8' ]
220+
python-version: [ '3.7', '3.8', '3.9' ]
221221
runs-on: windows-2019
222222
steps:
223223
- uses: actions/checkout@v2
@@ -234,7 +234,7 @@ jobs:
234234
name: Pytest MacOS
235235
strategy:
236236
matrix:
237-
python-version: [ '3.7', '3.8' ]
237+
python-version: [ '3.7', '3.8', '3.9' ]
238238
runs-on: macos-10.15
239239
steps:
240240
- uses: actions/checkout@v2

cirq-core/cirq/contrib/requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ pylatex~=1.3.0
77
quimb
88
opt_einsum
99
autoray
10+
# required for py39 opcodes.
11+
numba>=0.53.0
1012

1113
# quil import
1214
pyquil~=2.21.0

0 commit comments

Comments
 (0)