From 04319abb5093d1fba252feab49430433046d7009 Mon Sep 17 00:00:00 2001 From: Aleksandr Soloshenko Date: Sun, 3 Nov 2024 06:55:46 +0700 Subject: [PATCH] [docs] update Python versions --- .github/workflows/testing.yml | 7 ++++--- README.md | 2 +- pyproject.toml | 2 ++ 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index ed6a6af..d41df3c 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -8,13 +8,14 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: + ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: pipenv diff --git a/README.md b/README.md index 67bf49e..502609d 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ This is a Python client library for interfacing with the [SMS Gateway for Androi ## Requirements -- Python >= 3.6 +- Python >= 3.7 - One of the following packages: - [requests](https://pypi.org/project/requests/) - [aiohttp](https://pypi.org/project/aiohttp/) diff --git a/pyproject.toml b/pyproject.toml index b4d6173..7f04323 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,6 +24,8 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Communications :: Telephony", "Topic :: Software Development :: Libraries :: Python Modules", "Typing :: Typed",