Skip to content

Commit

Permalink
Bump version to 1.5.6 and update dependencies in setup
Browse files Browse the repository at this point in the history
  • Loading branch information
cnmoro committed Jun 27, 2024
1 parent cb2deb6 commit cffded6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
18 changes: 16 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[build-system]
requires = ["setuptools>=61.0", "numpy==1.26.4", "onnx", "onnxruntime", "onnxruntime-extensions", "FlagEmbedding", "transformers==4.37.2", "torch", "faiss-cpu", "pytest", "pytest-cov", "scikit-learn", "thefuzz[speedup]"]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "minivectordb"
version = "1.5.5"
version = "1.5.6"
authors = [
{ name="Carlo Moro", email="cnmoro@gmail.com" },
]
Expand All @@ -16,6 +16,20 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy<2",
"transformers",
"faiss-cpu",
"torch",
"pytest",
"pytest-cov",
"scikit-learn",
"thefuzz[speedup]",
"FlagEmbedding",
"onnx",
"onnxruntime",
"onnxruntime-extensions"
]

[project.urls]
"Homepage" = "https://github.com/cnmoro/Mini-Vector-DB"
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

if is_arm:
reqs = [
"numpy==1.26.4",
"transformers==4.37.2",
"numpy<2",
"transformers",
"faiss-cpu",
"torch",
"pytest",
Expand All @@ -19,11 +19,11 @@
]
else:
reqs = [
"numpy==1.26.4",
"numpy<2",
"onnx",
"onnxruntime",
"onnxruntime-extensions",
"transformers==4.37.2",
"transformers",
"faiss-cpu",
"torch",
"pytest",
Expand All @@ -35,7 +35,7 @@

setup(
name='minivectordb',
version='1.5.5',
version='1.5.6',
author='Carlo Moro',
author_email='cnmoro@gmail.com',
description="This is a Python project aimed at extracting embeddings from textual data and performing semantic search.",
Expand Down

0 comments on commit cffded6

Please sign in to comment.