Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Test installation with pip on Windows #22

Test installation with pip on Windows

Test installation with pip on Windows #22

name: Test installation with pip on Windows
on:
schedule:
- cron: '0 8 * * 1'
workflow_dispatch:
jobs:
build:
name: Run (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
python-version: ['3.9']
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Check Python version
run: python --version
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install MLJAR AutoML
run: pip install mljar-supervised
- name: Try to import
run: python -c "import supervised; print(supervised.__version__)"
Morty Proxy This is a proxified and sanitized view of the page, visit original site.