Skip to content

Commit

Permalink
feat(python): Support python 3.10 (#30)
Browse files Browse the repository at this point in the history
* test multiple python versions
  • Loading branch information
hubertdeng123 authored Sep 17, 2024
1 parent 9b31771 commit 5e248d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@ concurrency:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Python
uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
with:
python-version: 3.12
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ build-backend = "setuptools.build_meta"
[project]
name = "devservices"
version = "0.0.1"
requires-python = ">=3.12"
# 3.10 is just for internal pypi compat
requires-python = ">=3.10"
dependencies = [
"pyyaml",
"sentry-devenv",
Expand Down

0 comments on commit 5e248d5

Please sign in to comment.