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 fa3bb8b commit 5c3f883Copy full SHA for 5c3f883
.github/workflows/testing.yml
@@ -8,7 +8,7 @@ jobs:
8
strategy:
9
max-parallel: 20
10
matrix:
11
- os: [ubuntu-latest]
+ os: [ubuntu-latest, windows-latest]
12
python-version: ["3.9", "3.10", "3.11"]
13
14
runs-on: ${{ matrix.os }}
setup.py
@@ -7,7 +7,7 @@
7
SETUP_PTH = os.path.dirname(os.path.abspath(__file__))
-with open(os.path.join(SETUP_PTH, "README.md")) as f:
+with open(os.path.join(SETUP_PTH, "README.md"), encoding="utf8") as f:
desc = f.read()
0 commit comments