From 5b76f1b85bbf7ed60841dab51816fda6c4382cad Mon Sep 17 00:00:00 2001 From: drorganvidez Date: Sun, 18 Feb 2024 19:07:51 +0100 Subject: [PATCH] fix: Update dependencies --- requirements.txt | 62 +++++++++++++++++----------------- scripts/update_dependencies.sh | 2 +- update_dependencies.sh | 12 ------- 3 files changed, 32 insertions(+), 44 deletions(-) mode change 100644 => 100755 scripts/update_dependencies.sh delete mode 100755 update_dependencies.sh diff --git a/requirements.txt b/requirements.txt index cfaff8718..127fd5d23 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,39 +1,39 @@ -alembic==1.12.0 -blinker==1.6.2 -certifi==2023.7.22 -cffi==1.15.1 -charset-normalizer==3.2.0 +alembic==1.13.1 +blinker==1.7.0 +certifi==2024.2.2 +cffi==1.16.0 +charset-normalizer==3.3.2 click==8.1.7 -cryptography==41.0.3 -dnspython==2.4.2 -email-validator==2.0.0.post2 -flake8==6.1.0 -Flask==2.3.3 -Flask-Login==0.6.2 -Flask-Migrate==4.0.4 -Flask-SQLAlchemy==3.0.5 -Flask-WTF==1.1.1 -greenlet==2.0.2 +cryptography==42.0.3 +dnspython==2.6.0 +email-validator==2.1.0.post1 +flake8==7.0.0 +Flask==3.0.2 +Flask-Login==0.6.3 +Flask-Migrate==4.0.5 +Flask-SQLAlchemy==3.1.1 +Flask-WTF==1.2.1 +greenlet==3.0.3 gunicorn==21.2.0 -idna==3.4 +idna==3.6 iniconfig==2.0.0 itsdangerous==2.1.2 -Jinja2==3.1.2 -Mako==1.2.4 -MarkupSafe==2.1.3 +Jinja2==3.1.3 +Mako==1.3.2 +MarkupSafe==2.1.5 mccabe==0.7.0 -packaging==23.1 -pluggy==1.3.0 -pycodestyle==2.11.0 +packaging==23.2 +pluggy==1.4.0 +pycodestyle==2.11.1 pycparser==2.21 -pyflakes==3.1.0 +pyflakes==3.2.0 PyMySQL==1.1.0 -pytest==7.4.1 -python-dotenv==1.0.0 +pytest==8.0.1 +python-dotenv==1.0.1 requests==2.31.0 -SQLAlchemy==2.0.20 -typing_extensions==4.7.1 -Unidecode==1.3.6 -urllib3==2.0.4 -Werkzeug==2.3.7 -WTForms==3.0.1 +SQLAlchemy==2.0.27 +typing_extensions==4.9.0 +Unidecode==1.3.8 +urllib3==2.2.1 +Werkzeug==3.0.1 +WTForms==3.1.2 diff --git a/scripts/update_dependencies.sh b/scripts/update_dependencies.sh old mode 100644 new mode 100755 index a7c4d1afa..5d332a7cd --- a/scripts/update_dependencies.sh +++ b/scripts/update_dependencies.sh @@ -7,6 +7,6 @@ pip install --upgrade pip pip freeze | cut -d = -f 1 | xargs -n1 pip install --upgrade # Update requirements.txt -pip freeze > requirements.txt +pip freeze > ../requirements.txt echo "Update completed!" \ No newline at end of file diff --git a/update_dependencies.sh b/update_dependencies.sh deleted file mode 100755 index 9bd20e757..000000000 --- a/update_dependencies.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -# Update pip -pip install --upgrade pip - -# Upgrade all packages -pip freeze | cut -d = -f 1 | xargs -n1 pip install --upgrade - -# Update requirements.txt -pip freeze > requirements.txt - -echo "Update completed!"