diff options
author | Daniel Schadt <kingdread@gmx.de> | 2025-06-18 13:29:09 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2025-06-18 13:30:29 +0200 |
commit | f196bf8f33d765c4108c2cb8f236829bde463f80 (patch) | |
tree | b46f932160f1d10c17e2e44439b90ad7eef8d1a1 /doc | |
parent | a587842f41e2e7f82a68b258f0ab69ae0e020385 (diff) | |
download | fietsboek-0.11.0.tar.gz fietsboek-0.11.0.tar.bz2 fietsboek-0.11.0.zip |
This includes a bump to Python 3.11, as we use datetime.UTC which was
only added in 3.11. We could go back and change those instances to
datetime.timezone.utc, but why artificially stick to Py 3.10.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/administration/installation.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/administration/installation.rst b/doc/administration/installation.rst index a7c5c27..13e03b5 100644 --- a/doc/administration/installation.rst +++ b/doc/administration/installation.rst @@ -9,13 +9,14 @@ Requirements Fietsboek has the following requirements: * A Linux system -* Python 3.10 or later +* Python 3.11 or later * A `redis <https://redis.com/>`__ server * (Optionally) an SQL database server: + * `PostgreSQL <https://www.postgresql.org/>`__ Other systems (such as BSD as operating system, or MariaDB as SQL server) might -work, but it is not tested. +work, but are not tested. In addition, if you run on a different interpreter than CPython, you might need a working Rust toolchain (``rustc`` and ``cargo``) installed. This is because |