Skip to content

Commit

Permalink
Also test with 3.12
Browse files Browse the repository at this point in the history
    * .github/workflows/automatic_generation.yml:
    * .github/workflows/pytest.yml:
    * setup.py:
  • Loading branch information
jwillemsen committed Nov 29, 2024
1 parent ff96f18 commit 0c30ea0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/automatic_generation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
if: needs.generate_package.outputs.need_to_release == 'true'
strategy:
matrix:
python-version: ['3.13']
python-version: ['3.12', '3.13']
steps:
- name: checkout repo content
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.13"]
python-version: ["3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
version=__version__,
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.13",
python_requires=">=3.12",
install_requires=requirements,
license="MIT license",
url="https://github.com/MatthewFlamm/pytest-homeassistant-custom-component",
Expand All @@ -33,7 +33,7 @@
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Testing",
],
entry_points={"pytest11": ["homeassistant = pytest_homeassistant_custom_component.plugins"]},
Expand Down

0 comments on commit 0c30ea0

Please sign in to comment.