From fbbbd04c40b1e9b7de1edacd6ce7be9edd2491bb Mon Sep 17 00:00:00 2001 From: Amele9 Date: Sat, 13 Jan 2024 19:04:03 +0600 Subject: [PATCH] Updated Python versions --- .github/workflows/python-package.yml | 6 +++--- setup.py | 20 +++++++++++++++----- 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 1ae4dbb..71eb2ad 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 @@ -30,9 +30,9 @@ jobs: - name: Lint with ruff run: | # stop the build if there are Python syntax errors or undefined names - ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py37 . + ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py38 . # default set of ruff rules with GitHub Annotations - ruff --output-format=github --target-version=py37 . + ruff --output-format=github --target-version=py38 . - name: Test with pytest run: | pytest diff --git a/setup.py b/setup.py index e3488fc..96cfa51 100644 --- a/setup.py +++ b/setup.py @@ -1,14 +1,15 @@ -from setuptools import setup, find_packages +from setuptools import find_packages, setup with open("README.md", encoding="UTF-8") as file: long_description = file.read() setup( name="whatsapp-api-webhook-server-python", - version="0.0.7", + version="0.0.8", description=( "This library helps you easily create" - " a Python server endpoint to receive WhatsApp message webhooks." + " a Python server endpoint to receive" + " WhatsApp message webhooks." ), long_description=long_description, long_description_content_type="text/markdown", @@ -21,12 +22,21 @@ "Environment :: Console", "Intended Audience :: Developers", "License :: Other/Proprietary License", + "Natural Language :: English", + "Natural Language :: Russian", "Operating System :: OS Independent", - "Programming Language :: Python :: 3.7", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Communications", + "Topic :: Communications :: Chat", + "Topic :: Software Development", + "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Application Frameworks" ], license=( @@ -34,5 +44,5 @@ " (CC BY-ND 4.0)" ), install_requires=["tornado==6.4"], - python_requires=">=3.7" + python_requires=">=3.8" )