From 12890594185937437c124777d94541faec5e00ca Mon Sep 17 00:00:00 2001 From: evan Date: Sat, 27 Jan 2024 02:06:58 -0600 Subject: [PATCH] update minimum versions of packages --- README.rst | 10 +++++++++- pyproject.toml | 6 +++--- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 6877d4b6..a9136321 100644 --- a/README.rst +++ b/README.rst @@ -19,7 +19,15 @@ This library allows you to write entries to a KeePass database. Come chat at `#pykeepass`_ on Freenode or `#pykeepass:matrix.org`_ on Matrix. .. _#pykeepass: irc://irc.freenode.net -.. _#pykeepass\:matrix.org: https://matrix.to/#/%23pykeepass:matrix.org +.. _#pykeepass\:matrix.org: https://matrix.to/#/%23pykeepass:matrix.org + +Installation +------------ + +.. code:: + + sudo apt install python3-lxml + pip install pykeepass Example ------- diff --git a/pyproject.toml b/pyproject.toml index 7c6fac4b..8ec2dc1d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,9 +9,9 @@ authors = [ license = {text = "GPL-3.0"} keywords = ["vault", "keepass"] dependencies = [ - "python-dateutil", - "construct", - "argon2_cffi", + "python-dateutil>=2.7.0", + "construct>=2.10.53", + "argon2_cffi>=18.1.0", "pycryptodomex>=3.6.2", "lxml", ]