diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index cc2414f..9c5579d 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', '3.12'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] services: rabbitmq: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b8d352..e29e8ea 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', '3.12'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] 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 198c1ab..f08e3e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,6 @@ 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', @@ -26,7 +25,7 @@ classifiers = [ 'Programming Language :: Python :: 3.12', ] keywords = ['ommunication', 'messaging', 'rpc', 'broadcast'] -requires-python = '>=3.7' +requires-python = '>=3.8' dependencies = [ 'deprecation', 'pyyaml~=6.0',