Enhancement: Update to Python 3.13 #522
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 variety of Python versions | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
| name: Python package | |
| on: | |
| push: | |
| paths-ignore: | |
| - '**.md' | |
| - '**.png' | |
| - 'img/*' | |
| - 'LICENSE' | |
| - '.gitignore' | |
| - 'docs/**' | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| - '**.png' | |
| - 'img/*' | |
| - 'LICENSE' | |
| - '.gitignore' | |
| - 'docs/**' | |
| jobs: | |
| build-n-test: | |
| runs-on: ubuntu-latest | |
| # See: https://github.com/marketplace/actions/skip-based-on-commit-message | |
| if: "!contains(github.event.head_commit.message, 'docs only')" | |
| strategy: | |
| matrix: | |
| python_version: ["3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python_version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python_version }} | |
| - name: Install setuptools for python 3.13 and 3.14 | |
| run: | | |
| python -m pip install setuptools | |
| python -m pip install -r requirements.txt | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install pytest pytest-cov | |
| python setup.py install | |
| python -m pip list | |
| #- name: Test with pytest | |
| # run: | | |
| # pytest --cov-report term-missing --cov-config=.coveragerc --cov=ldcoolp tests |