From 4e39f2f1080b579bd1f2a9cc797741ba4e5a713d Mon Sep 17 00:00:00 2001 From: Christopher McKay <101884182+karotkriss@users.noreply.github.com> Date: Wed, 19 Feb 2025 11:40:08 -0400 Subject: [PATCH] fix: Update phonenumber library to handle new GY phone number format MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The phonenumber library was updated from version 8.13.13 to 8.13.55 to address an issue where new Guyanese (GY) phone numbers starting with +592 7 were being incorrectly marked as invalid. Previously, only numbers starting with +592 6 were recognized. This change ensures that users can now correctly submit phone numbers with the updated formatĀ inĀ forms. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c94aa846de..c002e170a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ dependencies = [ "openpyxl~=3.1.2", "passlib~=1.7.4", "pdfkit~=1.0.0", - "phonenumbers==8.13.13", + "phonenumbers==8.13.55", "premailer~=3.10.0", "psutil~=5.9.5", "psycopg2-binary~=2.9.1",