Skip to content

Commit

Permalink
chore: removes Python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
pallabpain committed Sep 26, 2023
1 parent 4f6c34f commit c0a0625
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,10 @@
author="Rapyuta Robotics",
author_email="[email protected]",
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",
Expand Down

0 comments on commit c0a0625

Please sign in to comment.