Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

Commit

Permalink
Update python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsayre committed Jul 10, 2023
1 parent be3bb83 commit 278afa8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.11
- uses: actions/cache@v2
with:
path: ${{ env.pythonLocation }}
Expand All @@ -40,7 +40,7 @@ jobs:
needs: lint
strategy:
matrix:
python-version: [3.8, 3.9]
python-version: [3.10, 3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand All @@ -67,7 +67,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.11
- uses: actions/cache@v2
with:
path: ${{ env.pythonLocation }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.11
- uses: actions/cache@v2
with:
path: ${{ env.pythonLocation }}
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
author_email="[email protected]",
license="ASL 2.0",
packages=find_packages(exclude=("tests*",)),
install_requires=["aiohttp>=3.8.0,<4.0.0"],
install_requires=["aiohttp>=3.8.4,<4.0.0"],
tests_require=[],
platforms=["any"],
keywords="smartthings",
Expand All @@ -36,7 +36,7 @@
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Home Automation",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)

0 comments on commit 278afa8

Please sign in to comment.