Skip to content

fix typo in doc-spec #4990

fix typo in doc-spec

fix typo in doc-spec #4990

Workflow file for this run

name: build
on: [push, pull_request]
env:
UV_SYSTEM_PYTHON: 1
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
required-dependencies: ["minimum", "latest"]
name: py ${{ matrix.python-version }} with ${{ matrix.required-dependencies }} required deps
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
# Install dependencies from pyproject.toml (latest versions for all matrix jobs)
- name: Install dependencies
run: uv pip install -e ".[dev, all]"
# Install minimum required versions for compatibility testing (only for 'minimum' matrix value)
- name: Pin minimum dependency versions
if: ${{ matrix.required-dependencies == 'minimum' }}
run: |
# Keep in sync with versions in `pyproject.toml`
uv pip install jsonschema==3.0 narwhals==1.27.1 typing_extensions==4.12.0
- name: Maybe uninstall optional dependencies
# We uninstall pyarrow and vegafusion for one job to test that we have not
# accidentally introduced a hard dependency on these libraries.
# Uninstalling for Python 3.9 is an arbitrary choice.
# Also see https://github.com/vega/altair/pull/3114
if: ${{ matrix.python-version == '3.9' }}
run: |
uv pip uninstall pyarrow vegafusion vl-convert-python anywidget
- name: Maybe install lowest supported pandas version
# We install the lowest supported pandas version for one job to test that
# it still works. Downgrade to the oldest versions of pandas and numpy that include
# Python 3.9 wheels, so only run this job for Python 3.9
if: ${{ matrix.python-version == '3.9' }}
run: |
uv pip install pandas==1.1.3 numpy==1.19.3
- name: Test that schema generation has no effect
run: |
uv pip install vl-convert-python
python tools/generate_schema_wrapper.py
# This gets the paths of all files which were either deleted, modified
# or are not yet tracked by Git
files=`git ls-files --deleted --modified --others --exclude-standard`
# Depending on the shell it can happen that 'files' contains empty
# lines which are filtered out in the for loop below
files_cleaned=()
for i in "${files[@]}"; do
# Skip empty items
if [ -z "$i" ]; then
continue
fi
# Add the rest of the elements to a new array
files_cleaned+=("${i}")
done
if [ ${#files_cleaned[@]} -gt 0 ]; then
echo "The code generation modified the following files:"
echo $files
git diff
exit 1
fi
- name: Test with pytest
run: |
uv run pytest --pyargs --numprocesses=logical --doctest-modules --doctest-ignore-import-errors tests
- name: Validate Vega-Lite schema
run: |
# We install all 'format' dependencies of jsonschema as check-jsonschema
# only does the 'format' checks which are installed.
# We can always use the latest jsonschema version here.
# uri-reference check is disabled as the URIs in the Vega-Lite schema do
# not conform RFC 3986.
uv pip install 'jsonschema[format]' check-jsonschema --upgrade
uv run check-jsonschema --check-metaschema altair/vegalite/v6/schema/vega-lite-schema.json --disable-formats uri-reference
- name: Show installed versions
run: uv pip list