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 a054bda commit 672e03aCopy full SHA for 672e03a
.github/workflows/builds.yml
@@ -12,7 +12,7 @@ jobs:
12
strategy:
13
fail-fast: false
14
matrix:
15
- os: [ubuntu-latest, macos-latest]
+ os: [ubuntu-latest, macos-latest, windows-latest]
16
python: ["3.10", "3.11"]
17
steps:
18
- uses: actions/checkout@v4
@@ -33,6 +33,11 @@ jobs:
33
- name: Install package
34
run: |
35
python -m pip install --upgrade pip
36
- pip install -e .[viz,html] --upgrade
+ if [ "${{ runner.os }}" = "Windows" ]; then
37
+ pip install -e .[viz] --upgrade
38
+ else
39
+ pip install -e .[viz,html] --upgrade
40
+ fi
41
+ shell: bash # Ensures shell is consistent across OSes
42
- name: Import package
43
run: python -c "import doctr; print(doctr.__version__)"
0 commit comments