We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c9270ae + ff3ee40 commit d0b4953Copy full SHA for d0b4953
.github/workflows/test.yml
@@ -49,7 +49,7 @@ jobs:
49
- name: Run the tests
50
if: ${{ matrix.os != 'windows' }}
51
run: |
52
- pytest -vv
+ pytest -vv -s
53
- name: Run basic test on Windows
54
if: ${{ matrix.os == 'windows' }}
55
setup.py
@@ -21,7 +21,7 @@
21
long_description_content_type="text/x-rst",
22
install_requires = [
23
"ptyprocess;os_name!='nt'",
24
- "pywinpty (>=0.5);os_name=='nt'",
+ "pywinpty (>=0.5,<1);os_name=='nt'",
25
"tornado (>=4)",
26
],
27
extras_require = dict(test=['pytest']),
0 commit comments