Skip to content

Commit 0333415

Browse files
feat: Support pgvector as a custom x-sql-datatype
1 parent 8e4ff98 commit 0333415

File tree

4 files changed

+354
-82
lines changed

4 files changed

+354
-82
lines changed

pyproject.toml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,14 @@ lint = [
5656
"ruff>=0.1.14",
5757
]
5858
testing = [
59-
"pytest>=7.4.2",
59+
"pgvector>=0.4.1",
60+
"pytest>=9",
6061
"tap-countries",
6162
"tap-fundamentals",
6263
]
6364
typing = [
6465
"mypy>=1.6.1",
65-
"types-paramiko>=3.3.0.0,<4",
66+
"types-paramiko>=4",
6667
"types-simplejson>=3.19.0.2",
6768
"types-sqlalchemy>=1.4.53.38",
6869
"types-jsonschema>=4.19.0.3",
@@ -90,7 +91,8 @@ requires = [
9091
]
9192
build-backend = "hatchling.build"
9293

93-
[tool.pytest.ini_options]
94+
[tool.pytest]
95+
minversion = "9.0"
9496
filterwarnings = [
9597
"error",
9698
"ignore:Exception ignored:pytest.PytestUnraisableExceptionWarning",
@@ -119,12 +121,6 @@ select = [
119121
"RUF", # ruff
120122
]
121123

122-
[tool.ruff.lint.flake8-import-conventions]
123-
banned-from = ["sqlalchemy"]
124-
125-
[tool.ruff.lint.flake8-import-conventions.extend-aliases]
126-
sqlalchemy = "sa"
127-
128124
[tool.ruff.lint.pydocstyle]
129125
convention = "google"
130126

0 commit comments

Comments
 (0)