cleanlab--cleanlab
c0f2078bd6
CI / Core Tests: Python 3.10 on macos-latest (push) Has been cancelled
CI / Core Tests: Python 3.11 on macos-latest (push) Has been cancelled
CI / Core Tests: Python 3.12 on macos-latest (push) Has been cancelled
GitHub Pages / deploy (push) Has been cancelled
CI / Core Tests: Python 3.13 on macos-latest (push) Has been cancelled
CI / Core Tests: Python 3.14 on macos-latest (push) Has been cancelled
CI / Core Tests: Python 3.10 on ubuntu-latest (push) Has been cancelled
CI / Core Tests: Python 3.11 on ubuntu-latest (push) Has been cancelled
CI / Core Tests: Python 3.12 on ubuntu-latest (push) Has been cancelled
CI / Core Tests: Python 3.13 on ubuntu-latest (push) Has been cancelled
CI / Core Tests: Python 3.14 on ubuntu-latest (push) Has been cancelled
CI / Core Tests: Python 3.10 on windows-latest (push) Has been cancelled
CI / Core Tests: Python 3.11 on windows-latest (push) Has been cancelled
CI / Core Tests: Python 3.12 on windows-latest (push) Has been cancelled
CI / Core Tests: Python 3.13 on windows-latest (push) Has been cancelled
CI / Core Tests: Python 3.14 on windows-latest (push) Has been cancelled
CI / ML Framework Tests: Python 3.10 on ubuntu-latest (push) Has been cancelled
CI / ML Framework Tests: Python 3.11 on ubuntu-latest (push) Has been cancelled
CI / ML Framework Tests: Python 3.12 on ubuntu-latest (push) Has been cancelled
CI / ML Framework Tests: Python 3.13 on ubuntu-latest (push) Has been cancelled
CI / ML Framework Tests: Python 3.14 on ubuntu-latest (push) Has been cancelled
CI / Test without optional dependencies and with minimum compatible versions of dependencies (push) Has been cancelled
CI / Maximum Dependency Versions: Python 3.14 (push) Has been cancelled
CI / Type check (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Check for unused/wildcard imports (push) Has been cancelled
CI / Lint Notebooks (push) Has been cancelled
GitHub Markdown Links / test (push) Has been cancelled
GitHub Pages / links (push) Has been cancelled
35 行
1.4 KiB
YAML
35 行
1.4 KiB
YAML
name: Bleeding Edge Dependencies Test
|
|
on:
|
|
schedule:
|
|
- cron: '0 6 1 * *' # First day of each month at 6:00 UTC
|
|
workflow_dispatch: # Allow manual triggering
|
|
|
|
jobs:
|
|
test-bleeding-edge:
|
|
name: "Bleeding Edge Dependencies: Python Latest"
|
|
runs-on: ubuntu-latest
|
|
continue-on-error: true
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: snok/latest-python-versions@v1
|
|
id: python-versions
|
|
with:
|
|
min-version: '3.14'
|
|
include-prereleases: false
|
|
- uses: actions/setup-python@v6
|
|
with:
|
|
python-version: ${{ fromJson(steps.python-versions.outputs.latest-python-versions)[0] }}
|
|
- name: Download cleanvision test data
|
|
run: |
|
|
git clone https://github.com/cleanlab/assets.git
|
|
mv assets/cleanlab_test_data ./tests/datalab/data
|
|
- name: Install bleeding-edge dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install --pre --upgrade numpy scikit-learn pandas tqdm termcolor
|
|
pip install --pre torch torchvision || pip install torch torchvision
|
|
pip install -e ".[all]"
|
|
- name: Install test dependencies
|
|
run: pip install --no-cache-dir -r requirements-test-core.txt
|
|
- name: Test with bleeding-edge deps
|
|
run: pytest --verbose --maxfail=10 -m "not slow" --ignore=tests/test_frameworks.py --ignore=tests/test_model_pytorch_cnn.py |