Skip to content

Commit

Permalink
Raise minimum python version to 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mvn23 committed Sep 15, 2024
1 parent 7671079 commit 9e85bf9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repos:
rev: v3.16.0
hooks:
- id: pyupgrade
args: ['--py310-plus']
args: ['--py311-plus']
- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# pyotgw Changelog

### master
- Raise minimum python version to 3.11

### 2.2.0
- Split status line processing into functions (#65)
- Various small fixes (#64)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def read(fname):
keywords="opentherm gateway otgw",
url="https://github.com/mvn23/pyotgw",
packages=["pyotgw"],
python_requires=">=3.8",
python_requires=">=3.11",
long_description=read("README.md"),
long_description_content_type="text/markdown",
install_requires=["pyserial-asyncio-fast"],
Expand Down

0 comments on commit 9e85bf9

Please sign in to comment.