Skip to content

Commit 490d2a8

Browse files
committed
update test matrix back to 3.8
1 parent ca87285 commit 490d2a8

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ on:
1111

1212
jobs:
1313
test:
14+
strategy:
15+
matrix:
16+
python-version: ["pypy3.8", "pypy3.9", "pypy3.10", "pypy3.11", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1417
name: test
1518
runs-on: ubuntu-latest
1619
steps:
@@ -19,10 +22,13 @@ jobs:
1922
with:
2023
fetch-depth: 0
2124

22-
- name: Set up Python 3.13
25+
- name: Set up Python ${{ matrix.python-version }}
2326
uses: actions/setup-python@v4
2427
with:
25-
python-version: "3.13"
28+
python-version: ${{ matrix.python-version }}
29+
30+
- name: Display Python version
31+
run: python -c "import sys; print(sys.version)"
2632

2733
- name: Install PDM
2834
run: |

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
]
77
description = "A Python client for the Fitbit API"
88
readme = "README.md"
9-
requires-python = ">=3.13"
9+
requires-python = ">=3.8"
1010
classifiers = [
1111
"Intended Audience :: Developers",
1212
"Operating System :: OS Independent",
@@ -45,7 +45,6 @@ build-backend = "pdm.backend"
4545

4646
[tool.black]
4747
line-length = 100
48-
target-version = ['py313']
4948
preview = true
5049
quiet = true
5150
skip-magic-trailing-comma = true

0 commit comments

Comments
 (0)