From ff29489a6067ef3cdd4a9002345a0ce9c26205f6 Mon Sep 17 00:00:00 2001 From: Batkhuu Date: Tue, 12 Sep 2023 22:37:45 +0900 Subject: [PATCH] :bug: Removed not supporting old python version. --- README.md | 4 ++-- setup.py | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 213df3c..1744cf6 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ It is a `Loguru` based custom logging package for python projects. ### 1. Prerequisites -- **Python (>= v3.7)** -- **PyPi (>= v21)** +- **Python (>= v3.8)** +- **PyPi (>= v23)** ### 2. Install beans-logging package diff --git a/setup.py b/setup.py index 89b231d..157664c 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ "print", "custom-logging", ], - python_requires=">=3.7", + python_requires=">=3.8", install_requires=[ "PyYAML>=6.0,<7.0", "pydantic>=2.1.1,<3.0.0", @@ -45,7 +45,6 @@ "Intended Audience :: Developers", "Topic :: Software Development :: Build Tools", "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",