Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: 3.13 and some touchup #201

Merged
merged 2 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 17 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,31 +16,35 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest]
# version number must be string, otherwise 3.10 becomes 3.1
python-version: ["3.8", "3.10", "3.13"]
include:
# version number must be string, otherwise 3.10 becomes 3.1
- os: windows-latest
python-version: "3.12"
- os: ubuntu-latest
python-version: "3.10"
- os: macos-latest
python-version: "3.9"
- os: macos-13
python-version: "3.11"
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install --upgrade pip
- run: python -m pip install -e .[test]
allow-prereleases: true

- if: ${{ matrix.os != 'ubuntu-latest' }}
- uses: astral-sh/setup-uv@v3

- run: uv pip install --system -e .[test]

- if: matrix.os != 'ubuntu-latest'
run: python -m pytest

# toml is needed only by coveralls
- if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
python -m pip install toml
JUPYTER_PLATFORM_DIRS=1 coverage run -m pytest
- if: ${{ matrix.os == 'ubuntu-latest' }}
- if: matrix.os == 'ubuntu-latest'
env:
JUPYTER_PLATFORM_DIRS: 1
run: coverage run -m pytest

- if: matrix.os == 'ubuntu-latest'
uses: coverallsapp/github-action@v2
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ classifiers = [
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
]
Expand Down