diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 3be7838..e4ca9f5 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-20.04 #ubuntu-latest strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v3 @@ -32,4 +32,4 @@ jobs: behave - name: Build Wheel run: | - ./build.sh \ No newline at end of file + ./build.sh diff --git a/CHANGELOG.md b/CHANGELOG.md index 35f3907..3130566 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +### Changed +- Dropped support for Python 3.6 and 3.7 +- Added support for Python 3.11, 3.12, and 3.13 ## [0.5.0] - 2023-02-09 ### Changed diff --git a/setup.py b/setup.py index ad8ea56..028bef4 100644 --- a/setup.py +++ b/setup.py @@ -14,14 +14,14 @@ classifiers=[ "Development Status :: 4 - Beta", "Programming Language :: Python", - "Programming Language :: Python :: 3", - "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", ], license="MIT", keywords="behave pandas testing bdd", - python_requires=">=3.6", + python_requires=">=3.8", )