Skip to content

feat: add tqdm progress bars to TimesFMFinetuner #244

feat: add tqdm progress bars to TimesFMFinetuner

feat: add tqdm progress bars to TimesFMFinetuner #244

Workflow file for this run

name: Python package build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Create virtual environment
run: uv venv
- name: Install build dependencies
run: |
uv pip install build ".[torch,flax]"
- name: Build package
run: uv run python -m build