Skip to content

Commit 9905822

Browse files
committed
Disable Flint version check to test against main
1 parent 8f66092 commit 9905822

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.github/workflows/buildwheel.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
fail-fast: false
182182
matrix:
183183
# Supported versions and latest git
184-
flint-tag: ['v3.0.0', 'v3.0.1', 'v3.1.0', 'v3.1.1', 'v3.1.2', 'main']
184+
flint-tag: ['v3.0.0', 'v3.0.1', 'v3.1.0', 'v3.1.1', 'v3.1.2']
185185
steps:
186186
- uses: actions/checkout@v4
187187
- uses: actions/setup-python@v5
@@ -191,6 +191,24 @@ jobs:
191191
- run: pip install .
192192
- run: python -m flint.test --verbose
193193

194+
# Test against flint main (with disabled version check)
195+
test_flint_versions:
196+
name: Test flint ${{ matrix.flint-tag }}
197+
runs-on: ubuntu-22.04
198+
strategy:
199+
fail-fast: false
200+
matrix:
201+
# Supported versions and latest git
202+
flint-tag: ['main']
203+
steps:
204+
- uses: actions/checkout@v4
205+
- uses: actions/setup-python@v5
206+
with:
207+
python-version: '3.12'
208+
- run: bin/install_flint_ubuntu.sh ${{ matrix.flint-tag }}
209+
- run: pip install --config-settings=setup-args="-Dflint_version_check=false" .
210+
- run: python -m flint.test --verbose
211+
194212
# Deploy wheels and sdist to PyPI
195213

196214
pypi_release:

0 commit comments

Comments
 (0)