From c32e40378be7a05f515f4b91bf11d15833c75e59 Mon Sep 17 00:00:00 2001 From: Jaechang Namgoong Date: Wed, 18 Jun 2025 18:10:59 +0900 Subject: [PATCH] Add support for Python 3.12 and 3.13 --- .github/workflows/iconsdk-workflow.yml | 2 ++ README.md | 2 +- pyproject.toml | 2 ++ quickstart/README.md | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/iconsdk-workflow.yml b/.github/workflows/iconsdk-workflow.yml index 2ff52e6..e4eb1b4 100644 --- a/.github/workflows/iconsdk-workflow.yml +++ b/.github/workflows/iconsdk-workflow.yml @@ -16,6 +16,8 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" + - "3.13" steps: - uses: actions/checkout@v4 - name: Install uv and setup Python ${{ matrix.python-version }} diff --git a/README.md b/README.md index a4a646e..3dbbfd7 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This document describes how to interact with ICON Network using the ICON SDK for ## Requirements -- Python 3.8 or later. +- Python 3.9 or later. ## Installation diff --git a/pyproject.toml b/pyproject.toml index 8e31779..94ccd73 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,6 +33,8 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3 :: Only", ] diff --git a/quickstart/README.md b/quickstart/README.md index da67fe4..e0a7f29 100644 --- a/quickstart/README.md +++ b/quickstart/README.md @@ -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.8+ + - Version: Python 3.9+ - IDE: Pycharm is recommended. ## Installation