From c0a0625837d33fe22582364ca3d058a9b906dfdf Mon Sep 17 00:00:00 2001 From: Pallab Pain Date: Tue, 26 Sep 2023 14:07:06 +0530 Subject: [PATCH] chore: removes Python 3.7 support --- .github/workflows/pull-request.yaml | 2 +- README.md | 2 +- setup.py | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 3f77b4a2..5e283521 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: [ '3.7', '3.8', '3.9', '3.10' ] + python-version: [ '3.8', '3.9', '3.10' ] steps: - name: Checkout Code uses: actions/checkout@v2 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",