diff options
| author | J08nY | 2025-11-17 17:33:45 +0100 |
|---|---|---|
| committer | J08nY | 2025-11-17 17:33:45 +0100 |
| commit | dc8cd4bfb5acee6abab74c7401b43505f669cec3 (patch) | |
| tree | 255c1f4e1c37147726c505b696d3997737af90dd /src | |
| parent | 9564933c5468c988fa24525c24fad554bb9dfca3 (diff) | |
| download | sec-certs-dc8cd4bfb5acee6abab74c7401b43505f669cec3.tar.gz sec-certs-dc8cd4bfb5acee6abab74c7401b43505f669cec3.tar.zst sec-certs-dc8cd4bfb5acee6abab74c7401b43505f669cec3.zip | |
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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/sec_certs/model/references_nlp/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
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]`." ) |
