-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* new: update fastembed to 0.5.0, update numpy version mapping, bump qdrant-client to v1.12.2 * new: update qdrant version in integration tests * update lock * drop python3.8 * fix numpy for type checkers * fix netlify * fix netlify
- Loading branch information
Showing
7 changed files
with
1,062 additions
and
1,086 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,6 @@ jobs: | |
strategy: | ||
matrix: | ||
python-version: | ||
- '3.8.x' | ||
- '3.9.x' | ||
- '3.10.x' | ||
- '3.11.x' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,6 @@ jobs: | |
strategy: | ||
matrix: | ||
python-version: | ||
- '3.8.x' | ||
- '3.9.x' | ||
- '3.10.x' | ||
- '3.11.x' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[build] | ||
publish = "docs/html" | ||
command = "bash -x tools/generate_docs_netlify.sh" | ||
|
||
[build.environment] | ||
PYTHON_VERSION = "3.10" |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "qdrant-client" | ||
version = "1.12.1" | ||
version = "1.12.2" | ||
description = "Client library for the Qdrant vector search engine" | ||
authors = ["Andrey Vasnetsov <[email protected]>"] | ||
packages = [ | ||
|
@@ -13,23 +13,24 @@ repository = "https://github.com/qdrant/qdrant-client" | |
keywords = ["vector", "search", "neural", "matching", "client"] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8" | ||
python = ">=3.9" | ||
httpx = { version = ">=0.20.0", extras = ["http2"] } | ||
numpy = [ | ||
{ version = "<1.21", python = "<3.8" }, | ||
{ version = ">=1.21", python = ">=3.8,<3.12" }, | ||
{ version = ">=1.26", python = ">=3.12" } | ||
{ version = ">=1.21,<2.1.0", python = "<3.10" }, | ||
{ version = ">=1.21", python = ">=3.10,<3.12" }, | ||
{ version = ">=1.26", python = ">=3.12,<3.13" }, | ||
{ version = ">=2.1.0", python = ">=3.13" } | ||
] | ||
pydantic = ">=1.10.8" | ||
grpcio = { version = ">=1.41.0", allow-prereleases = true } | ||
grpcio-tools = ">=1.41.0" | ||
urllib3 = ">=1.26.14,<3" | ||
portalocker = "^2.7.0" | ||
fastembed = [ | ||
{ version = "0.3.6", optional = true, python = "<3.13" } | ||
{ version = "0.5.0", optional = true }, | ||
] | ||
fastembed-gpu = [ | ||
{ version = "0.3.6", optional = true, python = "<3.13" } | ||
{ version = "0.5.0", optional = true }, | ||
] | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
|
@@ -47,7 +48,7 @@ ruff = "0.4.3" | |
|
||
|
||
[tool.poetry.group.docs.dependencies] | ||
sphinx = "^4.5.0" | ||
sphinx = "^5.0.0" | ||
qdrant-sphinx-theme = { git = "https://github.com/qdrant/qdrant_sphinx_theme.git", branch = "master" } | ||
nbsphinx = "^0.9.3" | ||
ipython = "8" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters