Skip to content

Use BaseSamplerV1 with explicit version (backport #653) #2438

Use BaseSamplerV1 with explicit version (backport #653)

Use BaseSamplerV1 with explicit version (backport #653) #2438

name: Minimum version tests
on:
push:
branches:
- main
- 'stable/**'
pull_request:
branches:
- main
- 'stable/**'
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
max-parallel: 4
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies (minimum versions)
shell: bash
run: |
python -m pip install --upgrade pip
python -m pip install toml typer
pip install "tox==$(python tools/extremal-python-dependencies.py get-tox-minversion)"
python tools/extremal-python-dependencies.py pin-dependencies-to-minimum --inplace
- name: Modify tox.ini for more thorough check
shell: bash
run: |
sed -i.bak -E '/#.*CI:[[:space:]]*skip-next-line/I{N;d;}' tox.ini
cat tox.ini
- name: Test using tox environment
shell: bash
run: |
pver=${{ matrix.python-version }}
tox -epy${pver/./} -- --run-slow
#tox -epy${pver/./}-notebook