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

build: add python 3.13 to matrix #68

Merged
merged 5 commits into from
Dec 17, 2024
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [39, 310, 311, 312]
python: [39, 310, 311, 312, 313]

steps:
- uses: actions/checkout@v4

- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
uses: astral-sh/setup-uv@v4

- name: Test
run: uv run --python ${{ matrix.python }} python -m unittest discover tests
Expand All @@ -41,7 +41,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
python: [39, 310, 311, 312]
python: [39, 310, 311, 312, 313]
arch: [auto64, auto32, universal2]
build: ["cp"]
exclude:
Expand All @@ -56,7 +56,7 @@ jobs:
uses: actions/checkout@v4

- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
uses: astral-sh/setup-uv@v4

- uses: pypa/cibuildwheel@v2.21.3
env:
Expand All @@ -77,7 +77,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
uses: astral-sh/setup-uv@v4

- name: Build sdist
run: uv build --sdist
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
merge-multiple: true

- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
uses: astral-sh/setup-uv@v4

- name: Publish
run: uv publish
Loading