diff options
-rw-r--r-- | CHANGELOG.rst | 1 | ||||
-rw-r--r-- | doc/administration/installation.rst | 2 | ||||
-rw-r--r-- | release-checklist.md | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7230449..a49f7b6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -18,6 +18,7 @@ Added Changed ^^^^^^^ +- Fietsboek now requires at least Python 3.10. - Fietsboek now uses `Inter <https://rsms.me/inter/>`__ as its font. Fixed diff --git a/doc/administration/installation.rst b/doc/administration/installation.rst index cf8e83a..b207784 100644 --- a/doc/administration/installation.rst +++ b/doc/administration/installation.rst @@ -9,7 +9,7 @@ Requirements Fietsboek has the following requirements (apart from the Python modules, which will be installed by ``pip``): -* Python 3.9 or later +* Python 3.10 or later * A `redis <https://redis.com/>`__ server, used for caching and temporary data * (Optionally) an SQL database server like `PostgreSQL <https://www.postgresql.org/>`__ or `MariaDB <https://mariadb.org/>`__ (if diff --git a/release-checklist.md b/release-checklist.md index 7f11194..3b9632f 100644 --- a/release-checklist.md +++ b/release-checklist.md @@ -7,7 +7,7 @@ - [ ] Commit those changes (`git add ... && git commit -m 'bump version to X.Y.Z'`) - [ ] Make sure the directory is clean (no uncommited changes) - [ ] Make sure the tests & lints pass - - [ ] Make sure they also do so on **Python 3.9** (current minimum version) + - [ ] Make sure they also do so on **Python 3.10** (current minimum version) - [ ] Create a new git tag: `git tag -a vX.Y.Z` - [ ] Push the tag to the remote repositories - [ ] Publish to PyPI: `poetry publish` |