From 11c906b45d797fbca4440685854d00c395e2422a Mon Sep 17 00:00:00 2001 From: Patrick Canterino Date: Tue, 15 Feb 2022 19:35:08 +0100 Subject: [PATCH] Updated Django to 4.0.2 Finally figured out how to install Python 3.8 in my venv ;) --- .gitignore | 1 + notes/templates/note_list.html | 4 ++-- requirements.txt | 12 ++++++------ 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index be04a68..7871bf9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .env* !.env.sample .venv +.venv-old __pycache__ db.sqlite3 diff --git a/notes/templates/note_list.html b/notes/templates/note_list.html index f1f5ee5..5647f9c 100644 --- a/notes/templates/note_list.html +++ b/notes/templates/note_list.html @@ -12,11 +12,11 @@ {% if page_count > 1 %} {% endif %} diff --git a/requirements.txt b/requirements.txt index f37921d..9f59599 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,15 +1,15 @@ -asgiref==3.4.1 -Django==3.2.12 -importlib-metadata==4.8.3 +asgiref==3.5.0 +backports.zoneinfo==0.2.1 +Django==4.0.2 +importlib-metadata==4.11.1 Markdown==3.3.6 mysqlclient==2.1.0 packaging==21.3 -pkg-resources==0.0.0 pyparsing==3.0.7 python-dotenv==0.19.2 pytz==2021.3 six==1.16.0 sqlparse==0.4.2 -typing-extensions==4.0.1 +typing_extensions==4.1.1 webencodings==0.5.1 -zipp==3.6.0 +zipp==3.7.0 -- 2.34.1