From 7fbbea90293b62851e3779d96f8b432accde2f85 Mon Sep 17 00:00:00 2001 From: "i.nueske" <i.nueske@indiscale.com> Date: Tue, 17 Dec 2024 10:00:14 +0100 Subject: [PATCH] MNT: Remove support for python 3.8 --- CHANGELOG.md | 2 ++ DEPENDENCIES.md | 2 +- README_SETUP.md | 4 ++-- setup.py | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 928c5230..7a0cf22b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed ### +* Support for Python 3.8 + ### Fixed ### * [#73](https://gitlab.com/linkahead/linkahead-pylib/-/issues/73) diff --git a/DEPENDENCIES.md b/DEPENDENCIES.md index e2326b83..e9bd54a1 100644 --- a/DEPENDENCIES.md +++ b/DEPENDENCIES.md @@ -1,5 +1,5 @@ * caosdb-server >= 0.12.0 -* Python >= 3.8 +* Python >= 3.9 * pip >= 20.0.2 Any other dependencies are defined in the setup.py and are being installed via pip diff --git a/README_SETUP.md b/README_SETUP.md index 8fc93474..f4c92138 100644 --- a/README_SETUP.md +++ b/README_SETUP.md @@ -4,7 +4,7 @@ ### How to install ### -First ensure that python with at least version 3.8 is installed. Should this not be +First ensure that python with at least version 3.9 is installed. Should this not be the case, you can use the [Installing python](#installing-python-) guide for your OS. #### Generic installation #### @@ -39,7 +39,7 @@ entries `install_requires` and `extras_require`. #### Linux #### -Make sure that Python (at least version 3.8) and pip is installed, using your system tools and +Make sure that Python (at least version 3.9) and pip is installed, using your system tools and documentation. Then open a terminal and continue in the [Generic installation](#generic-installation) section. diff --git a/setup.py b/setup.py index daf36764..7a7bf9bd 100755 --- a/setup.py +++ b/setup.py @@ -179,7 +179,7 @@ def setup_package(): "Topic :: Scientific/Engineering :: Information Analysis", ], packages=find_packages('src'), - python_requires='>=3.8', + python_requires='>=3.9', package_dir={'': 'src'}, install_requires=['lxml>=4.6.3', "requests[socks]>=2.26", -- GitLab