@@ -151,40 +151,40 @@ jobs:
151151#
152152
153153
154- test_windows :
155- runs-on : windows-latest
156- strategy :
157- fail-fast : false
158- matrix :
159- python-version : ["3.8", "3.9", "3.10", "3.11"]
160-
161- steps :
162- - uses : actions/checkout@v2
163- - name : Set up Python ${{ matrix.python-version }}
164- uses : actions/setup-python@v2
165- with :
166- python-version : ${{ matrix.python-version }}
167- - name : Install dependencies
168- run : |
169- python -m pip install --upgrade pip
170- python -m pip install flake8 pytest
171- python -m pip install numpy>=1.21.0
172- python -m pip install "jaxlib==0.4.11" -f https://whls.blob.core.windows.net/unstable/index.html --use-deprecated legacy-resolver
173- python -m pip install jax==0.4.11
174- python -m pip install -r requirements-dev.txt
175- python -m pip install tqdm brainpylib
176- pip uninstall brainpy -y
177- python setup.py install
178- - name : Lint with flake8
179- run : |
180- # stop the build if there are Python syntax errors or undefined names
181- flake8 brainpy/ --count --select=E9,F63,F7,F82 --show-source --statistics
182- # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
183- flake8 brainpy/ --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
184- - name : Test with pytest
185- run : |
186- cd brainpy
187- pytest _src/
154+ # test_windows:
155+ # runs-on: windows-latest
156+ # strategy:
157+ # fail-fast: false
158+ # matrix:
159+ # python-version: ["3.8", "3.9", "3.10", "3.11"]
160+ #
161+ # steps:
162+ # - uses: actions/checkout@v2
163+ # - name: Set up Python ${{ matrix.python-version }}
164+ # uses: actions/setup-python@v2
165+ # with:
166+ # python-version: ${{ matrix.python-version }}
167+ # - name: Install dependencies
168+ # run: |
169+ # python -m pip install --upgrade pip
170+ # python -m pip install flake8 pytest
171+ # python -m pip install numpy>=1.21.0
172+ # python -m pip install "jaxlib==0.4.11" -f https://whls.blob.core.windows.net/unstable/index.html --use-deprecated legacy-resolver
173+ # python -m pip install jax==0.4.11
174+ # python -m pip install -r requirements-dev.txt
175+ # python -m pip install tqdm brainpylib
176+ # pip uninstall brainpy -y
177+ # python setup.py install
178+ # - name: Lint with flake8
179+ # run: |
180+ # # stop the build if there are Python syntax errors or undefined names
181+ # flake8 brainpy/ --count --select=E9,F63,F7,F82 --show-source --statistics
182+ # # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
183+ # flake8 brainpy/ --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
184+ # - name: Test with pytest
185+ # run: |
186+ # cd brainpy
187+ # pytest _src/
188188
189189
190190# test_windows_py37:
0 commit comments