Skip to content

Commit 5e248d5

Browse files
feat(python): Support python 3.10 (#30)
* test multiple python versions
1 parent 9b31771 commit 5e248d5

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,16 @@ concurrency:
1414
jobs:
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

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "devservices"
77
version = "0.0.1"
8-
requires-python = ">=3.12"
8+
# 3.10 is just for internal pypi compat
9+
requires-python = ">=3.10"
910
dependencies = [
1011
"pyyaml",
1112
"sentry-devenv",

0 commit comments

Comments
 (0)