From 44f637e6bf8484e1c0109a3ff0f9a54844850267 Mon Sep 17 00:00:00 2001 From: Razvan Dinu Date: Tue, 11 Jul 2023 09:14:00 +0300 Subject: [PATCH] Upgrade `annoy` to 1.17.3. Close #58. --- CHANGELOG.md | 7 +++++++ requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1954e5547..4c47cb02b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +### Fixed + +- [#58](https://github.com/NVIDIA/NeMo-Guardrails/issues/58): Fix install on Mac OS 13. + + ## [0.3.0] - 2023-06-30 ### Added diff --git a/requirements.txt b/requirements.txt index 7247b00af..0253133dd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,7 +5,7 @@ requests==2.31.0 typer==0.7.0 PyYAML~=6.0 setuptools~=65.5.1 -annoy==1.17.1 +annoy==1.17.3 sentence-transformers==2.2.2 fastapi==0.96.0 starlette==0.27.0 diff --git a/setup.py b/setup.py index 952d7c153..9a4efbb41 100644 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ "typer==0.7.0", "PyYAML~=6.0", "setuptools~=65.5.1", - "annoy==1.17.1", + "annoy==1.17.3", "sentence-transformers==2.2.2", "fastapi==0.96.0", "starlette==0.27.0",