Skip to content

Commit

Permalink
Updated Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Amele9 committed Jan 13, 2024
1 parent 1f7c632 commit fbbbd04
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
20 changes: 15 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -21,18 +22,27 @@
"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=(
"Creative Commons Attribution-NoDerivatives 4.0 International"
" (CC BY-ND 4.0)"
),
install_requires=["tornado==6.4"],
python_requires=">=3.7"
python_requires=">=3.8"
)

0 comments on commit fbbbd04

Please sign in to comment.