diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index b011259..ac5182c 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -58,7 +58,7 @@ jobs: strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11'] services: rabbitmq: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3ad272..4ec67b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11'] rabbitmq: [latest] include: - python-version: '3.8' diff --git a/docs/source/index.rst b/docs/source/index.rst index 70e6a61..04c3626 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -53,7 +53,7 @@ Features * Generic communicator interface with native support for RabbitMQ * Supports task queues, broadcasts and RPC * Support for both thread and coroutine based communication -* Python 3.7+ compatible. +* Python 3.8+ compatible. Getting Started diff --git a/docs/source/installation.rst b/docs/source/installation.rst index 3ea4941..f9f7077 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -8,7 +8,7 @@ Installation Python ------ -KiwiPy supports Python versions 3.7 and above. +KiwiPy supports Python versions 3.8 and above. RabbitMQ -------- diff --git a/pyproject.toml b/pyproject.toml index 1ec3810..e5b4e60 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,14 +18,13 @@ classifiers = [ 'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', ] keywords = ['ommunication', 'messaging', 'rpc', 'broadcast'] -requires-python = '>=3.7' +requires-python = '>=3.8' dependencies = [ 'deprecation', 'pyyaml~=6.0',