Skip to content

Commit 6b8c0e2

Browse files
committed
Make: Deprecate Python 3.7 builds
1 parent eaec868 commit 6b8c0e2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ jobs:
390390
strategy:
391391
matrix:
392392
os: [ubuntu-latest, macos-latest, windows-latest]
393-
python-version: ['37', '38', '39', '310', '311', '312', '313', '313t']
393+
python-version: ['38', '39', '310', '311', '312', '313', '313t']
394394
steps:
395395
- uses: actions/checkout@v4
396396
- name: Set up Python

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ jobs:
420420
strategy:
421421
matrix:
422422
os: [ubuntu-latest, macos-latest, windows-latest]
423-
python-version: ['37', '38', '39', '310', '311', '312', '313', '313t']
423+
python-version: ['38', '39', '310', '311', '312', '313', '313t']
424424
steps:
425425
- name: Check out refreshed version
426426
uses: actions/checkout@v4

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ Linting:
191191

192192
```sh
193193
pip install ruff
194-
ruff --format=github --select=E9,F63,F7,F82 --target-version=py37 python
194+
ruff --format=github --select=E9,F63,F7,F82 --target-version=py310 python
195195
```
196196

197197
Before merging your changes you may want to test your changes against the entire matrix of Python versions USearch supports.

0 commit comments

Comments
 (0)