From d25c43c867b87dcca6ec7270d433a05b4d72fad3 Mon Sep 17 00:00:00 2001 From: Shubham Date: Mon, 11 Dec 2023 13:14:23 +0530 Subject: [PATCH] chore: upgrade to python 3.12 (#741) --- .github/workflows/test-and-deploy.yml | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 9bba6d8ba..e94bc5fd9 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -17,7 +17,7 @@ jobs: timeout-minutes: 20 strategy: matrix: - python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ] + python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ] steps: - name: Checkout twilio-python uses: actions/checkout@v3 diff --git a/requirements.txt b/requirements.txt index ff6d4043d..f2b815e85 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ pygments>=2.7.4 # not directly required, pinned by Snyk to avoid a vulnerability requests>=2.0.0 PyJWT>=2.0.0, <3.0.0 -aiohttp==3.9.1 +aiohttp>=3.9.0 aiohttp-retry>=2.8.3