Skip to content

Commit

Permalink
Docs: update supported Python versions
Browse files Browse the repository at this point in the history
In last release support for Python 3.6 was dropped but the documentation
was not updated and the `setup.py` still contained the classifier.
  • Loading branch information
sphuber committed Jan 17, 2022
1 parent 8759c82 commit adf373e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.6+ compatible.
* Python 3.7+ compatible.


Getting Started
Expand Down
3 changes: 1 addition & 2 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ Installation
Python
------

KiwiPy supports Python versions 3.6 and above, however, the minimum required patch version is 3.6.2.
All newer versions are supported.
KiwiPy supports Python versions 3.7 and above.

RabbitMQ
--------
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand Down
1 change: 0 additions & 1 deletion test/rmq/test_rmq_thread_communicator.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,6 @@ def close_callback(sender, exc): # pylint: disable=unused-argument
assert result == ['called']


@pytest.mark.skipif(sys.version_info < (3, 6), reason='`pytest-notebook` plugin requires Python >= 3.6')
def test_jupyter_notebook():
"""Test that the `RmqThreadCommunicator` can be used in a Jupyter notebook."""
from pytest_notebook.nb_regression import NBRegressionFixture
Expand Down

0 comments on commit adf373e

Please sign in to comment.