From f9dc30f0ca29922c5793032fa6ef04c7d88d1b9e Mon Sep 17 00:00:00 2001 From: karmaplush Date: Mon, 3 Jun 2024 17:37:37 +0500 Subject: [PATCH] Python 3.7 removed as unsupported version --- .github/workflows/python-package.yml | 2 +- setup.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 1ae4dbb..f92c6ea 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ] + python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] steps: - uses: actions/checkout@v3 diff --git a/setup.py b/setup.py index 0909aee..2d92a3d 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,6 @@ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -45,5 +44,5 @@ "whatsapp-api-client-python==0.0.45", "whatsapp-api-webhook-server-python-v2==0.1.0", ], - python_requires=">=3.7", + python_requires=">=3.8", )