@@ -154,52 +154,52 @@ jobs:
154154 run : |
155155 sphinx-build -b html docs/source/ docs/build/html
156156
157- test-windows :
158- runs-on : ${{matrix.os}}
159- timeout-minutes : 20
160- strategy :
161- fail-fast : false
162- matrix :
163- os : [windows-latest]
164- python-version :
165- - " 3.8"
166-
167- steps :
168- - uses : actions/checkout@v3
169-
170- - name : Set up Python ${{ matrix.python-version }}
171- uses : actions/setup-python@v4
172- with :
173- python-version : ${{ matrix.python-version }}
174-
175- - name : Setup conda
176- uses : s-weigand/setup-conda@v1
177- with :
178- update-conda : true
179- python-version : ${{ matrix.python-version }}
180- conda-channels : anaconda, conda-forge
181- # - run: conda --version # This fails due to unknown reasons
182- - run : which python
183-
184- - name : Upgrade pip version
185- run : |
186- python -m pip install --upgrade pip
187-
188- - name : Install requirements
189- run : |
190- python -m pip install -r requirements.txt
191- python -m pip install -r docs/requirements.txt
192-
193- - name : Build package
194- env :
195- CL : " /std:c++17"
196- run : |
197- python scripts/build/install.py
198-
199- - name : Run tests
200- run : |
201- python -c "import pydatastructs; pydatastructs.test()"
202-
203- - name : Build Documentation
204- run : |
205- sphinx-build -b html docs/source/ docs/build/html
157+ # test-windows:
158+ # runs-on: ${{matrix.os}}
159+ # timeout-minutes: 20
160+ # strategy:
161+ # fail-fast: false
162+ # matrix:
163+ # os: [windows-latest]
164+ # python-version:
165+ # - "3.8"
166+
167+ # steps:
168+ # - uses: actions/checkout@v3
169+
170+ # - name: Set up Python ${{ matrix.python-version }}
171+ # uses: actions/setup-python@v4
172+ # with:
173+ # python-version: ${{ matrix.python-version }}
174+
175+ # - name: Setup conda
176+ # uses: s-weigand/setup-conda@v1
177+ # with:
178+ # update-conda: true
179+ # python-version: ${{ matrix.python-version }}
180+ # conda-channels: anaconda, conda-forge
181+ # # - run: conda --version # This fails due to unknown reasons
182+ # - run: which python
183+
184+ # - name: Upgrade pip version
185+ # run: |
186+ # python -m pip install --upgrade pip
187+
188+ # - name: Install requirements
189+ # run: |
190+ # python -m pip install -r requirements.txt
191+ # python -m pip install -r docs/requirements.txt
192+
193+ # - name: Build package
194+ # env:
195+ # CL: "/std:c++17"
196+ # run: |
197+ # python scripts/build/install.py
198+
199+ # - name: Run tests
200+ # run: |
201+ # python -c "import pydatastructs; pydatastructs.test()"
202+
203+ # - name: Build Documentation
204+ # run: |
205+ # sphinx-build -b html docs/source/ docs/build/html
0 commit comments