Skip to content
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
5 changes: 3 additions & 2 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fetch-depth: 0
persist-credentials: false
- name: Run TinySemVer
uses: ashvardanian/tinysemver@v2.0.7
uses: ashvardanian/tinysemver@v2.1.1
with:
verbose: "true"
version-file: "VERSION"
Expand Down Expand Up @@ -390,7 +390,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["37", "38", "39", "310", "311", "312", "313"]
python-version: ['37', '38', '39', '310', '311', '312', '313', '313t']
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand All @@ -408,6 +408,7 @@ jobs:
run: cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: cp${{ matrix.python-version }}-*
CIBW_ENABLE: cpython-freethreading # No-GIL 3.13t builds

test_ubuntu_cross_compilation:
name: Cross Compilation
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fetch-depth: 0
persist-credentials: false
- name: Run TinySemVer
uses: ashvardanian/tinysemver@v2.0.7
uses: ashvardanian/tinysemver@v2.1.1
with:
verbose: "true"
version-file: "VERSION"
Expand Down Expand Up @@ -420,12 +420,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["37", "38", "39", "310", "311", "312", "313"]
python-version: ['37', '38', '39', '310', '311', '312', '313', '313t']
steps:
- name: Check out refreshed version
uses: actions/checkout@v4
with:
ref: "main"
ref: 'main'
- name: Setup Docker
if: matrix.os == 'ubuntu-22.04'
uses: crazy-max/ghaction-setup-docker@v1.0.0
Expand All @@ -442,6 +442,7 @@ jobs:
run: cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: cp${{ matrix.python-version }}-*
CIBW_ENABLE: cpython-freethreading # No-GIL 3.13t builds
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion simsimd
Loading