From 24710af5d69141c2a0d9ed56213d8617f8c86c7e Mon Sep 17 00:00:00 2001 From: Pallab Pain Date: Tue, 26 Sep 2023 17:02:29 +0530 Subject: [PATCH] chore: remove support for Python 3.7 --- README.md | 2 +- setup.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 427b308f..0fc403fe 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Rapyuta.io Python SDK enables you to access platform services and resources in your python applications. -The SDK supports Python 3.7+. For older Python 2.x support, you can use the +The SDK supports Python 3.8+. For older Python 2.x support, you can use the 0.x.x [releases](https://pypi.org/project/rapyuta-io/#history) from Pypi. ## Install diff --git a/setup.py b/setup.py index 627f88c4..196a5678 100644 --- a/setup.py +++ b/setup.py @@ -14,11 +14,10 @@ author="Rapyuta Robotics", author_email="opensource@rapyuta-robotics.com", packages=find_packages(include=["rapyuta_io*"]), - python_requires=">=3.7", + python_requires=">=3.8", license="Apache 2.0", classifiers=[ "Programming Language :: Python", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",