Skip to content

Commit 38173ed

Browse files
committed
Dropped support for Python < 3.8 [skip ci]
1 parent 62a0839 commit 38173ed

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
python: [3.11, 3.7]
9+
python: [3.11, 3.8]
1010
steps:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-python@v4

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.0 (unreleased)
2+
3+
- Dropped support for Python < 3.8
4+
15
## 0.1.8 (2023-05-20)
26

37
- Fixed serialization with Django

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
'pgvector.sqlalchemy',
2222
'pgvector.utils'
2323
],
24-
python_requires='>=3.6',
24+
python_requires='>=3.8',
2525
install_requires=[
2626
'numpy'
2727
],

0 commit comments

Comments
 (0)