We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4790239 commit 5d439eaCopy full SHA for 5d439ea
.github/workflows/ci.yml
@@ -21,11 +21,13 @@ jobs:
21
if: matrix.os == 'windows-latest'
22
run: |
23
echo "PYTHONUTF8=1" >> $env:GITHUB_ENV
24
+ echo "PYTHONIOENCODING=utf-8" >> $env:GITHUB_ENV
25
chcp 65001
26
shell: pwsh
27
- name: Install tox and any other packages
28
run: pip install tox
29
- name: Run tox
30
env:
31
PYTHONUTF8: ${{ matrix.os == 'windows-latest' && '1' || '' }}
32
+ PYTHONIOENCODING: ${{ matrix.os == 'windows-latest' && 'utf-8' || '' }}
33
run: tox -e py
0 commit comments