Skip to content

Add Python 3.13 and fastembed 0.6 support #1102

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

Merged
merged 11 commits into from
Apr 15, 2025
32 changes: 16 additions & 16 deletions .github/workflows/full-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ on:
workflow_dispatch:

jobs:
call-tests:
strategy:
matrix:
os: [Windows, macOS] # exclude Ubuntu as it is available in pr-tests
python-version: ["3.9", "3.10", "3.11", "3.12"]
include:
- os: Windows
image: windows-2022
- os: macOS
image: macos-14
fail-fast: false
call-tests:
strategy:
matrix:
os: [Windows, macOS] # exclude Ubuntu as it is available in pr-tests
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
include:
- os: Windows
image: windows-2022
- os: macOS
image: macos-14
fail-fast: false

uses: ./.github/workflows/_test.yml
with:
os: ${{ matrix.os }}
image: ${{ matrix.image }}
python-version: ${{ matrix.python-version }}
uses: ./.github/workflows/_test.yml
with:
os: ${{ matrix.os }}
image: ${{ matrix.image }}
python-version: ${{ matrix.python-version }}
38 changes: 19 additions & 19 deletions .github/workflows/latest-deps-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ on:
schedule:
- cron: "0 22 * * *" # 10:00 PM UTC, daily
jobs:
call-tests:
strategy:
matrix:
os: [Ubuntu]
python-version: ["3.9", "3.10", "3.11", "3.12"]
include:
- os: Ubuntu
image: ubuntu-latest
- os: macOS
image: macos-15
- os: Windows
image: windows-latest
fail-fast: false
uses: ./.github/workflows/_test.yml
with:
os: ${{ matrix.os }}
image: ${{ matrix.image }}
python-version: ${{ matrix.python-version }}
upgrade-deps: true
call-tests:
strategy:
matrix:
os: [Ubuntu]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
include:
- os: Ubuntu
image: ubuntu-latest
- os: macOS
image: macos-15
- os: Windows
image: windows-latest
fail-fast: false
uses: ./.github/workflows/_test.yml
with:
os: ${{ matrix.os }}
image: ${{ matrix.image }}
python-version: ${{ matrix.python-version }}
upgrade-deps: true
38 changes: 19 additions & 19 deletions .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
name: PR Tests

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
# we don't ignore markdkowns to run pre-commits
paths-ignore:
- ".github/**"
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
# we don't ignore markdkowns to run pre-commits
paths-ignore:
- ".github/**"

jobs:
call-tests:
strategy:
matrix:
os: [Ubuntu]
python-version: ["3.9", "3.10", "3.11", "3.12"]
include:
- os: Ubuntu
image: ubuntu-latest
fail-fast: false
uses: ./.github/workflows/_test.yml
with:
os: ${{ matrix.os }}
image: ${{ matrix.image }}
python-version: ${{ matrix.python-version }}
call-tests:
strategy:
matrix:
os: [Ubuntu]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
include:
- os: Ubuntu
image: ubuntu-latest
fail-fast: false
uses: ./.github/workflows/_test.yml
with:
os: ${{ matrix.os }}
image: ${{ matrix.image }}
python-version: ${{ matrix.python-version }}
Loading