Update package dependencies in README
Marco Ricci

Marco Ricci commited on 2024-07-14 15:23:27
Zeige 1 geänderte Dateien mit 3 Einfügungen und 2 Löschungen.


We erroneously claim that we require Python 3.11 instead of 3.10, and we
neglect to mention the typing-extensions package.
... ...
@@ -24,9 +24,10 @@ $ pip install derivepassphrase
24 24
 
25 25
 ### Manually
26 26
 
27
-`derivepassphrase` is a pure Python package, and may be easily installed manually by placing the respective files into Python's import path.
28
-`derivepassphrase` requires Python 3.11 or higher for its core functionality and programmatic interface, and [`click`][CLICK] 8.1 or higher for its command-line interface.
27
+`derivepassphrase` is a pure Python package, and may be easily installed manually by placing the respective files and the package's dependencies into Python's import path.
28
+`derivepassphrase` requires Python 3.10 or higher as well as the [typing-extensions package][TYPING_EXTENSIONS] for its core functionality and programmatic interface, and [`click`][CLICK] 8.1 or higher for its command-line interface.
29 29
 
30
+[TYPING_EXTENSIONS]: https://pypi.org/project/typing-extensions/
30 31
 [CLICK]: https://click.palletsprojects.com/
31 32
 
32 33
 ## Quick Usage
33 34