Skip to content

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

WIP migrate to uv package manager, fixing package compatibility issues

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

Workflow file for this run

# name: black isort
# on: [push, pull_request]
# jobs:
# lint:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# with:
# python-version: 3.8
# - 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 black and isort
# run: |
# uv venv
# source .venv/bin/activate
# uv pip install black==23.3.0 isort
# - name: Running Black
# run: |
# source .venv/bin/activate
# black --check --diff --line-length 79 .
# - name: Running isort
# if: always()
# run: |
# source .venv/bin/activate
# isort --check-only --line-length 79 --profile black .