Skip to content

Commit b0ec3ab

Browse files
authored
Merge pull request #24 from green-api/SW-1823
Updated python version
2 parents f37c568 + ab6992f commit b0ec3ab

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/python-package.yml

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

1717
steps:
1818
- uses: actions/checkout@v3
@@ -28,9 +28,9 @@ jobs:
2828
- name: Lint with ruff
2929
run: |
3030
# stop the build if there are Python syntax errors or undefined names
31-
ruff --format=github --select=E9,F63,F7,F82 --target-version=py37 .
31+
ruff --format=github --select=E9,F63,F7,F82 --target-version=py38 .
3232
# default set of ruff rules with GitHub Annotations
33-
ruff --format=github --target-version=py37 .
33+
ruff --format=github --target-version=py38 .
3434
- name: Test with pytest
3535
run: |
3636
pytest

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="whatsapp-api-client-python",
8-
version="0.0.37",
8+
version="0.0.38",
99
description=(
1010
"This library helps you easily create"
1111
" a Python application with WhatsApp API."
@@ -22,7 +22,6 @@
2222
"Intended Audience :: Developers",
2323
"License :: Other/Proprietary License",
2424
"Operating System :: OS Independent",
25-
"Programming Language :: Python :: 3.7",
2625
"Programming Language :: Python :: 3.8",
2726
"Programming Language :: Python :: 3.9",
2827
"Programming Language :: Python :: 3.10",
@@ -34,5 +33,5 @@
3433
" (CC BY-ND 4.0)"
3534
),
3635
install_requires=["requests==2.31.0"],
37-
python_requires=">=3.7"
36+
python_requires=">=3.8"
3837
)

0 commit comments

Comments
 (0)