This repository was archived by the owner on Jun 13, 2026. It is now read-only.
Bump matplotlib from 3.10.9 to 3.11.0 (#451) #964
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This workflow will install Python dependencies, run tests and lint with a single version of Python | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
| name: Python application | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.13 # Keep in synch with Pipfile | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libcairo2-dev pkg-config python3-dev | |
| python -m pip install --upgrade pip | |
| pip install pipenv | |
| pipenv install --dev | |
| - name: Test with pytest | |
| run: | | |
| pipenv run pytest |