From 9fad46981ed5ccb1d48b99ec840986593b57bcab Mon Sep 17 00:00:00 2001 From: Perry Kundert Date: Mon, 22 Jul 2024 09:49:45 -0600 Subject: [PATCH] Correct Werkzeug version 2.* in requirements.txt --- app.py | 2 +- requirements.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index 64ad46c..97ecb62 100755 --- a/app.py +++ b/app.py @@ -14,7 +14,7 @@ app = Flask(__name__) fake = Faker() -alphanumeric_only = re.compile("[\W_]+") +alphanumeric_only = re.compile(r"[\W_]+") phone_pattern = re.compile(r"^[\d\+\-\(\) ]+$") twilio_number = os.environ.get("TWILIO_CALLER_ID") diff --git a/requirements.txt b/requirements.txt index 1e7f034..7b03434 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,4 @@ twilio~=6.38.1 faker~=4.0.3 python-dotenv==0.13.0 pytest==5.4.1 +Werkzeug >= 2, < 3