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 9547a35 commit 04a6bbeCopy full SHA for 04a6bbe
.github/workflows/test.yaml
@@ -60,7 +60,7 @@ jobs:
60
runs-on: macos-latest
61
strategy:
62
matrix:
63
- python-version: ["3.11"]
+ python-version: ["3.8", "3.9", "3.10", "3.11"]
64
65
steps:
66
- uses: actions/checkout@v3
@@ -70,11 +70,10 @@ jobs:
70
uses: actions/setup-python@v4
71
with:
72
python-version: ${{ matrix.python-version }}
73
- architecture: arm64
74
- name: Install dependencies
75
run: |
76
python3 -m pip install --upgrade pip
77
- python3 -m pip install .[all] -v
+ python3 -m pip install .[all] --verbose --config-settings=cmake.verbose=true --config-settings=logging.level=INFO
78
- name: Test with pytest
79
80
python3 -m pytest
0 commit comments