Skip to content

Commit 3584470

Browse files
authored
Drop support for python 3.8 (#754)
Python 3.8 is EOL since 2024, drop support for it
1 parent b701319 commit 3584470

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
os: [macos-latest, ubuntu-latest, windows-latest, ubuntu-24.04-arm]
31-
python-version: [38, 39, 310, 311, 312, 313, 314]
31+
python-version: [39, 310, 311, 312, 313, 314]
3232

3333
steps:
3434
- uses: actions/checkout@v6
@@ -60,7 +60,7 @@ jobs:
6060
runs-on: ${{ matrix.os }}
6161
strategy:
6262
matrix:
63-
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13', '3.14']
63+
python-version: [3.9, '3.10', '3.11', '3.12', '3.13', '3.14']
6464
os: [macos-latest, ubuntu-latest, windows-latest, ubuntu-24.04-arm]
6565

6666
steps:

implicit/gpu/matrix.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ cdef extern from "implicit/gpu/matrix.h" namespace "implicit::gpu" nogil:
2121
Matrix(const Matrix & other, size_t rowid) except +
2222
Matrix(const Matrix & other, size_t start, size_t end) except +
2323
Matrix(const Matrix & other, const Vector[int] & rowids) except +
24-
Matrix(Matrix && other) except +
24+
Matrix(Matrix & other) except +
2525
void to_host(void * output) except +
2626
void resize(size_t rows, size_t cols) except +
2727
void assign_rows(const Vector[int] & rowids, const Matrix & other) except +

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ readme = "README.md"
1616
authors = [
1717
{ name = "Ben Frederickson", email = "ben@benfrederickson.com" },
1818
]
19-
requires-python = ">=3.8"
19+
requires-python = ">=3.9"
2020
license = "MIT"
2121
license-files = ["LICENSE"]
2222
classifiers = [

0 commit comments

Comments
 (0)