File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -106,6 +106,11 @@ jobs:
106106 \"python-version\": \"3.8\", \
107107 \"package_level\": \"minimum\" \
108108 }, \
109+ { \
110+ \"os\": \"windows-latest\", \
111+ \"python-version\": \"3.8\", \
112+ \"package_level\": \"latest\" \
113+ }, \
109114 { \
110115 \"os\": \"windows-latest\", \
111116 \"python-version\": \"3.13.0\", \
Original file line number Diff line number Diff line change 1+ Circumvented an issue when installing pywinpty 2.0.14 with latest version of
2+ maturin on Python 3.8, by excluding pywinpty 2.0.14.
Original file line number Diff line number Diff line change @@ -175,7 +175,8 @@ pip-check-reqs>=2.5.1; python_version >= '3.9'
175175
176176# pywinpty is used by terminado <- notebook <- jupyter
177177# pywinpty>=1.0 requires maturin to build. Meanwhile, it works.
178- pywinpty >= 2.0.12 ; os_name == "nt"
178+ # pywinpty 2.0.14 has an issue with latest maturin, see https://github.com/andfoy/pywinpty/issues/486
179+ pywinpty >= 2.0.12 ,!= 2.0.14 ; os_name == "nt"
179180
180181# pytz is actually covered in requirements.txt, but we need to repeat it here
181182# because development packages pull it in, so the exclusion of 2024.2 is active
You can’t perform that action at this time.
0 commit comments