Drop python3.8 support (#992)

Drop support for soon-to-be eol'd python 3.8.
This will allow some minor cleanups & makes it easier to add support for
timezones.

Related to
https://github.com/python-kasa/python-kasa/issues/980#issuecomment-2170889543
This commit is contained in:
Teemu R
2024-06-19 20:24:12 +02:00
committed by GitHub
parent 416d3118bf
commit 472008e818
16 changed files with 102 additions and 122 deletions

View File

@@ -62,7 +62,7 @@ jobs:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.9", "pypy-3.10"]
python-version: ["3.9", "3.10", "3.11", "3.12", "pypy-3.9", "pypy-3.10"]
os: [ubuntu-latest, macos-latest, windows-latest]
extras: [false, true]
exclude:
@@ -70,8 +70,6 @@ jobs:
extras: true
# setup-python not currently working with macos-latest
# https://github.com/actions/setup-python/issues/808
- os: macos-latest
python-version: "3.8"
- os: macos-latest
python-version: "3.9"
- os: windows-latest
@@ -82,9 +80,6 @@ jobs:
- os: ubuntu-latest
python-version: "pypy-3.10"
extras: true
- os: ubuntu-latest
python-version: "3.8"
extras: true
- os: ubuntu-latest
python-version: "3.9"
extras: true