diff --git a/test-apps/02-flask-blog-api/requirements.txt b/test-apps/02-flask-blog-api/requirements.txt index c9f6661..23a6f3d 100644 --- a/test-apps/02-flask-blog-api/requirements.txt +++ b/test-apps/02-flask-blog-api/requirements.txt @@ -1,25 +1,27 @@ # Flask Blog API - Dependencies # Core Framework -Flask==3.0.0 -Werkzeug==3.0.1 +Flask>=3.0.3 +Werkzeug>=3.1.3 # JWT Authentication -PyJWT==2.8.0 +PyJWT>=2.8.0 # Password Hashing -bcrypt==4.1.2 +bcrypt>=4.1.2 # CORS Support (for frontend integration) -Flask-CORS==4.0.0 +Flask-CORS>=5.0.0 # Environment Variables -python-dotenv==1.0.0 +python-dotenv>=1.0.0 # Testing -pytest==7.4.3 -pytest-cov==4.1.0 -requests==2.31.0 +pytest>=9.0.2 +pytest-cov>=4.1.0 + +# HTTP Library (secure version) +requests>=2.32.0 # RBAC Algorithm (local development) # Install with: pip install -e ../../