Skip to content

Commit

Permalink
Deprecate support for 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
sink772 committed Feb 26, 2025
1 parent 861b713 commit 1a7b68b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/iconsdk-publish-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/iconsdk-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This document describes how to interact with ICON Network using the ICON SDK for

## Requirements

- Python 3.7 or later.
- Python 3.8 or later.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Helping your readers to prepare increases the likelihood that they will continue
ICON SDK for Python development and execution requires following environments.

- Python
- Version: Python 3.7+
- Version: Python 3.8+
- IDE: Pycharm is recommended.

## Installation
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
packages=find_packages(exclude=['tests*']),
install_requires=requires,
extras_require=extras_requires,
python_requires='>=3.7',
python_requires='>=3.8',
license='Apache License 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand All @@ -34,10 +34,10 @@
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
)

0 comments on commit 1a7b68b

Please sign in to comment.