Skip to content

Commit

Permalink
Add python 3.12 for github tests and pylint (#1357)
Browse files Browse the repository at this point in the history
* Add psthon 3.12 for github tests and pylint

* Update changelog.md
  • Loading branch information
SukramJ authored Jan 5, 2024
1 parent 04841e0 commit b2bee57
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.11", "3.12"]
steps:
- name: Set Timezone
uses: szenius/[email protected]
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Version 2024.1.1 (2024-01-05)

- Allow ordered execution of collector paramsets
- Add python 3.12 for github tests and pylint

# Version 2024.1.0 (2024-01-03)

Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,13 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Home Automation",
]
requires-python = ">=3.11.0"
dependencies = [
"aiohttp>=3.8.4",
"orjson>=3.9.1",
"aiohttp>=3.9.1",
"orjson>=3.9.9",
"python-slugify>=4.0.1",
"voluptuous>=0.13.1",
]
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
aiohttp>=3.8.4
orjson>=3.9.1
aiohttp>=3.9.1
orjson>=3.9.9
python-slugify>=4.0.1
voluptuous>=0.13.1

0 comments on commit b2bee57

Please sign in to comment.