Skip to content

Commit b099761

Browse files
committed
ci: Fix windows install error by switching to Python 3.9
1 parent 637bed5 commit b099761

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,9 @@ commands:
142142

143143
- run:
144144
name: install python
145-
command: choco install --allow-downgrade -y python --version=3.8.10
145+
# Use python3.9 in Windows instead of python3.8 because otherwise
146+
# pytest-notebook's indirect dependency pywinpty will fail to build.
147+
command: choco install --allow-downgrade -y python --version=3.9.13
146148
shell: powershell.exe
147149

148150
- run:

0 commit comments

Comments
 (0)