From 3266cb46ede37bb8ea5606f0e6fa787e374d2f46 Mon Sep 17 00:00:00 2001 From: Pablo Estevez Date: Sun, 22 Feb 2026 18:10:53 +0000 Subject: [PATCH] update python version to 3.10 or higher --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/workflows/ci.yml | 2 +- README.md | 2 +- pyproject.toml | 11 ++++------- setup.cfg | 2 +- 5 files changed, 8 insertions(+), 11 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 3ba2357..23ebd08 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -21,7 +21,7 @@ A clear and concise description of what you expected to happen. **Environment (please complete the following information):** - OS: [e.g. Linux/Mac/Windows] -- Python version: [e.g. 3.7] +- Python version: [e.g. 3.10] - SDK version: [e.g. 2.0.0] **Additional context** diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d5e6fc..e469ff9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.9', '3.10', '3.11', '3.12'] + python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 233da43..82f9490 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ This library provides developers with a simple set of bindings to help you integ ## 💡 Requirements -Python 3 or higher. +Python 3.10 or higher. ## 📲 Installation diff --git a/pyproject.toml b/pyproject.toml index 7b0252a..e9e5558 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ description = "Mercadopago SDK module for Payments integration" readme = "README.md" keywords = ["api", "mercadopago", "checkout", "payment in sdk integration", "lts"] license = {file = "LICENSE"} -requires-python = ">=3.7" +requires-python = ">=3.10" dependencies = [ "requests" ] @@ -21,14 +21,11 @@ classifiers = [ "Operating System :: OS Independent", "Topic :: Software Development :: Libraries :: Python Modules", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.4", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", - "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", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] [project.optional-dependencies] diff --git a/setup.cfg b/setup.cfg index 4c98fbb..9a884ac 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [pylint.MASTER] -py-version = 3.7 +py-version = 3.10 [pylint.FORMAT] max-line-length = 100