Skip to content

Update PyPI install instructions in README.md #145

Update PyPI install instructions in README.md

Update PyPI install instructions in README.md #145

Workflow file for this run

name: lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-black-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install CadQuery and pytest
shell: bash --login {0}
run: |
python -m pip install --upgrade pip
python -m pip install -e .
python -m pip install -e .[dev]
- name: Run tests
shell: bash --login {0}
run: |
black --diff --check --target-version py313 --extend-exclude 'tests/testdata/syntax_error.py' .