Skip to content

Commit 035e7cb

Browse files
committed
Revert ci.yml to its state without windows
1 parent 756d4db commit 035e7cb

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
os: [ubuntu-latest, windows-latest]
11+
os: [ubuntu-latest]
1212
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1313

1414
steps:
@@ -17,17 +17,7 @@ jobs:
1717
uses: actions/setup-python@v4
1818
with:
1919
python-version: ${{ matrix.python }}
20-
- name: Set UTF-8 encoding on Windows
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
2720
- name: Install tox and any other packages
2821
run: pip install tox
2922
- name: Run tox
30-
env:
31-
PYTHONUTF8: ${{ matrix.os == 'windows-latest' && '1' || '' }}
32-
PYTHONIOENCODING: ${{ matrix.os == 'windows-latest' && 'utf-8' || '' }}
3323
run: tox -e py

0 commit comments

Comments
 (0)