Skip to content

Commit fbbbd04

Browse files
committed
Updated Python versions
1 parent 1f7c632 commit fbbbd04

2 files changed

Lines changed: 18 additions & 8 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
17+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
1818

1919
steps:
2020
- uses: actions/checkout@v3
@@ -30,9 +30,9 @@ jobs:
3030
- name: Lint with ruff
3131
run: |
3232
# stop the build if there are Python syntax errors or undefined names
33-
ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
33+
ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py38 .
3434
# default set of ruff rules with GitHub Annotations
35-
ruff --output-format=github --target-version=py37 .
35+
ruff --output-format=github --target-version=py38 .
3636
- name: Test with pytest
3737
run: |
3838
pytest

setup.py

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
from setuptools import setup, find_packages
1+
from setuptools import find_packages, setup
22

33
with open("README.md", encoding="UTF-8") as file:
44
long_description = file.read()
55

66
setup(
77
name="whatsapp-api-webhook-server-python",
8-
version="0.0.7",
8+
version="0.0.8",
99
description=(
1010
"This library helps you easily create"
11-
" a Python server endpoint to receive WhatsApp message webhooks."
11+
" a Python server endpoint to receive"
12+
" WhatsApp message webhooks."
1213
),
1314
long_description=long_description,
1415
long_description_content_type="text/markdown",
@@ -21,18 +22,27 @@
2122
"Environment :: Console",
2223
"Intended Audience :: Developers",
2324
"License :: Other/Proprietary License",
25+
"Natural Language :: English",
26+
"Natural Language :: Russian",
2427
"Operating System :: OS Independent",
25-
"Programming Language :: Python :: 3.7",
28+
"Programming Language :: Python",
29+
"Programming Language :: Python :: 3",
30+
"Programming Language :: Python :: 3 :: Only",
2631
"Programming Language :: Python :: 3.8",
2732
"Programming Language :: Python :: 3.9",
2833
"Programming Language :: Python :: 3.10",
2934
"Programming Language :: Python :: 3.11",
35+
"Programming Language :: Python :: 3.12",
36+
"Topic :: Communications",
37+
"Topic :: Communications :: Chat",
38+
"Topic :: Software Development",
39+
"Topic :: Software Development :: Libraries",
3040
"Topic :: Software Development :: Libraries :: Application Frameworks"
3141
],
3242
license=(
3343
"Creative Commons Attribution-NoDerivatives 4.0 International"
3444
" (CC BY-ND 4.0)"
3545
),
3646
install_requires=["tornado==6.4"],
37-
python_requires=">=3.7"
47+
python_requires=">=3.8"
3848
)

0 commit comments

Comments
 (0)