We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3de07dd commit 4ebc666Copy full SHA for 4ebc666
CHANGES.rst
@@ -1,6 +1,10 @@
1
Version history
2
===============
3
4
+**UNRELEASED**
5
+
6
+- Fixed pgvector support not working
7
8
**3.0.0rc4**
9
10
- Dropped support for Python 3.7
src/sqlacodegen/cli.py
@@ -19,7 +19,7 @@
19
geoalchemy2 = None
20
21
try:
22
- import pgvector
+ import pgvector.sqlalchemy
23
except ImportError:
24
pgvector = None
25
0 commit comments