From dc8cd4bfb5acee6abab74c7401b43505f669cec3 Mon Sep 17 00:00:00 2001 From: J08nY Date: Mon, 17 Nov 2025 17:33:45 +0100 Subject: Move away from pip-tools and use uv. uv is all the rage. No, but really. The pip-compile approach does not work cross-platform or cross-python version (sometimes it does, but not always). In comparison and uv lockfile is universal and cross-platform: https://docs.astral.sh/uv/concepts/projects/layout/#the-lockfile This should help make our install easier and more robust. --- src/sec_certs/model/references_nlp/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/sec_certs/model/references_nlp/__init__.py b/src/sec_certs/model/references_nlp/__init__.py index d4e11e4d..8325c989 100644 --- a/src/sec_certs/model/references_nlp/__init__.py +++ b/src/sec_certs/model/references_nlp/__init__.py @@ -9,5 +9,5 @@ try: except ImportError as e: print(e) print( - "Requirements for ML annotation of references not met. Please run `pip install sec-certs[nlp]` or install `pip install -r requirements/nlp_requirements.txt." + "Requirements for ML annotation of references not met. Please install the 'nlp' extra, for example via: `pip install sec-certs[nlp]`." ) -- cgit v1.3.1