From f9ea8f6d0709ee6821c75923e72b2bd0ef50fb73 Mon Sep 17 00:00:00 2001 From: Kirill Kouzoubov Date: Mon, 10 Jun 2024 18:42:03 +1000 Subject: [PATCH] Bump minimal supported python to 3.8 - also update conda install instructions --- docs/install.rst | 4 ++-- setup.cfg | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/install.rst b/docs/install.rst index 71e8814..f372ee5 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -1,7 +1,7 @@ Installation ############ -Minimal supported Python version is 3.6. Install from pypi +Minimal supported Python version is 3.8. Install from pypi .. code-block:: bash @@ -11,4 +11,4 @@ Conda is also available .. code-block:: bash - conda install -c kirill-odc jupyter-ui-poll \ No newline at end of file + conda install -c conda-forge jupyter-ui-poll \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index b3e4d21..da33849 100644 --- a/setup.cfg +++ b/setup.cfg @@ -21,15 +21,17 @@ classifiers = Development Status :: 5 - Production/Stable Operating System :: OS Independent License :: OSI Approved :: MIT License - Programming Language :: Python :: 3.6 - 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 + Programming Language :: Python :: 3.12 [options] zip_safe = true include_package_data = true -python_requires = >= 3.6 +python_requires = >= 3.8 packages = jupyter_ui_poll test_suite = tests setup_requires =