File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,16 @@ concurrency:
1414jobs :
1515 test :
1616 runs-on : ubuntu-latest
17+ strategy :
18+ matrix :
19+ python-version : ["3.10", "3.11", "3.12"]
1720 steps :
1821 - name : Checkout repo
1922 uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2023 - name : Set up Python
2124 uses : actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
2225 with :
23- python-version : 3.12
26+ python-version : ${{ matrix.python-version }}
2427 - name : Install dependencies
2528 run : |
2629 python -m pip install --upgrade pip
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ build-backend = "setuptools.build_meta"
55[project ]
66name = " devservices"
77version = " 0.0.1"
8- requires-python = " >=3.12"
8+ # 3.10 is just for internal pypi compat
9+ requires-python = " >=3.10"
910dependencies = [
1011 " pyyaml" ,
1112 " sentry-devenv" ,
You can’t perform that action at this time.
0 commit comments