Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/new_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
30 changes: 0 additions & 30 deletions .vscode/pyflowcl.code-workspace

This file was deleted.

3 changes: 3 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyflowcl/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2025.2"
__version__ = "2026.3.0"
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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" }
Expand All @@ -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",
]
Expand Down
Loading