8000 Enable python 3.13, allow pre-releases for CI (#1086) · python-kasa/python-kasa@633f57d · GitHub
[go: up one dir, main page]

Skip to content

Commit 633f57d

Browse files
rytilahtisdb9696
andauthored
Enable python 3.13, allow pre-releases for CI (#1086)
Adds py3.13 to the CI. Thanks to @hugovk for [pointing out `allow-prereleases` on his blog post](https://dev.to/hugovk/help-test-python-313-14j1)! --------- Co-authored-by: Steven B. <51370195+sdb9696@users.noreply.github.com>
1 parent 145a16d commit 633f57d

File tree

3 files changed

+82
-74
lines changed

3 files changed

+82
-74
lines changed

.github/actions/setup/action.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ runs:
1919
id: setup-python
2020
with:
2121
python-version: "${{ inputs.python-version }}"
22+
allow-prereleases: true
2223

2324
- name: Setup pipx environment Variables
2425
id: pipx-env-setup

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,12 @@ jobs:
6262

6363
strategy:
6464
matrix:
65-
python-version: ["3.9", "3.10", "3.11", "3.12", "pypy-3.9", "pypy-3.10"]
65+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.9", "pypy-3.10"]
6666
os: [ubuntu-latest, macos-latest, windows-latest]
6767
extras: [false, true]
6868
exclude:
6969
- os: macos-latest
7070
extras: true
71-
# setup-python not currently working with macos-latest
72-
# https://github.com/actions/setup-python/issues/808
73-
- os: macos-latest
74-
python-version: "3.9"
7571
- os: windows-latest
7672
extras: true
7773
- os: ubuntu-latest

0 commit comments

Comments
 (0)
0