Skip to content

WIP migrate to uv package manager, fixing package compatibility issues #677

WIP migrate to uv package manager, fixing package compatibility issues

WIP migrate to uv package manager, fixing package compatibility issues #677

Workflow file for this run

# on:
# push:
# branches: "*"
# pull_request:
# branches: "*"
# jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Set up Python 3.8
# uses: actions/setup-python@v4
# with:
# python-version: 3.10.16
# architecture: 'x64'
# - name: Install uv
# run: |
# curl -LsSf https://astral.sh/uv/install.sh | sh
# echo "$HOME/.cargo/bin" >> $GITHUB_PATH
# - name: Setup virtual environment and install dependencies
# run: |
# uv venv
# source .venv/bin/activate
# uv pip install flake8
# - name: Lint with flake8
# run: |
# source .venv/bin/activate
# # stop the build if there are Python syntax errors or undefined names
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics