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 /pyproject.toml | |
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 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index d65459c..26d89bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "fietsboek" description = "GPX file sharing website" -version = "0.10.0" +version = "0.11.0" license = "AGPL-3.0-or-later" readme = "README.md" authors = [ @@ -25,7 +25,7 @@ repository = "https://gitlab.com/dunj3/fietsboek" keywords = ["web", "gpx"] [tool.poetry.dependencies] -python = "^3.10" +python = "^3.11" pyramid = "^2" pyramid_jinja2 = "^2.10" |