diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9099432..9aa80ab 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - python-version: ['3.8', '3.9', '3.10'] + python-version: ['3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c0bce3..d7bcf8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a changelog](https://github.com/olivierlacan/keep-a-changelog). ## [Unreleased](https://github.com/blalop/bbva2pandas/tree/main) +### Added +- Python 3.11 & 3.12 support ## [1.1.2](https://github.com/idealista/bbva2pandas/tree/1.1.2) ### Fixed diff --git a/setup.py b/setup.py index 78d4e2f..4d307b8 100644 --- a/setup.py +++ b/setup.py @@ -32,9 +32,9 @@ 'Intended Audience :: Financial and Insurance Industry', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Programming Language :: Python', - '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', 'Topic :: Database', 'Topic :: Office/Business :: Financial', 'Topic :: Office/Business :: Financial :: Accounting',