diff --git a/.github/workflows/new_release.yml b/.github/workflows/new_release.yml index 388702b..e9e7c3a 100644 --- a/.github/workflows/new_release.yml +++ b/.github/workflows/new_release.yml @@ -13,8 +13,8 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9"] - poetry-version: ["2.0.1"] + python-version: ["3.13"] + poetry-version: ["2.3.1"] os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: @@ -36,8 +36,8 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9"] - poetry-version: ["2.0.1"] + python-version: ["3.13"] + poetry-version: ["2.3.1"] os: [ubuntu-latest] runs-on: ${{ matrix.os }} needs: crosscheck @@ -61,8 +61,8 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9"] - poetry-version: ["2.0.1"] + python-version: ["3.13"] + poetry-version: ["2.3.1"] os: [ubuntu-latest] runs-on: ${{ matrix.os }} needs: crosscheck diff --git a/.github/workflows/tests_coverage.yml b/.github/workflows/tests_coverage.yml index a016c33..06c7e1f 100644 --- a/.github/workflows/tests_coverage.yml +++ b/.github/workflows/tests_coverage.yml @@ -14,8 +14,8 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] - poetry-version: ["2.0.1"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] + poetry-version: ["2.3.1"] os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: diff --git a/.vscode/pyflowcl.code-workspace b/.vscode/pyflowcl.code-workspace deleted file mode 100644 index d337da4..0000000 --- a/.vscode/pyflowcl.code-workspace +++ /dev/null @@ -1,30 +0,0 @@ -// { -// "folders": [ -// { -// "path": ".." -// } -// ], -// "settings": { -// "python.analysis.typeCheckingMode": "off", -// "editor.defaultFormatter": "ms-python.black-formatter", -// "editor.formatOnSaveMode": "file", -// "editor.formatOnSave": true, -// "editor.codeActionsOnSave": { -// "source.organizeImports": "explicit" -// }, -// "[jsonc]": { -// "editor.defaultFormatter": "vscode.json-language-features" -// }, -// "isort.args": [ -// "--profile", -// "black", -// "--filter-files" -// ], -// "isort.check": true, -// "diffEditor.codeLens": true, -// "python.defaultInterpreterPath": "/home/mariofix/.cache/pypoetry/virtualenvs/pyflowcl-S15X6UCq-py3.10/bin/python", -// "[markdown]": { -// "editor.defaultFormatter": "DavidAnson.vscode-markdownlint" -// }, -// } -// } diff --git a/docs/changelog.md b/docs/changelog.md index 5c7593f..8a74b9d 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,6 +4,9 @@ Cliente API para operaciones con el servicio de pagos Flow.cl [FlowAPI-3.0.1](ht ## [Futuros Cambios] +- Bug en exceptions, GenericError faltaba +- Drop Python 3.9 + ## [2025.2] ### Agregado diff --git a/pyflowcl/version.py b/pyflowcl/version.py index 671454a..cd3cdac 100644 --- a/pyflowcl/version.py +++ b/pyflowcl/version.py @@ -1 +1 @@ -__version__ = "2025.2" +__version__ = "2026.3.0" diff --git a/pyproject.toml b/pyproject.toml index a4dd573..a5438dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyflowcl" -version = "2025.2.0" +version = "2026.3.0" description = "Cliente para comunicacion con API de flow.cl" authors = [{ name = "Mario Hernandez", email = "mariofix@proton.me" }] license = { text = "MIT" } @@ -23,6 +23,8 @@ classifiers = [ "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", "Intended Audience :: Developers", "Topic :: Software Development :: Libraries :: Python Modules", ]