File tree Expand file tree Collapse file tree 3 files changed +32
-149
lines changed Expand file tree Collapse file tree 3 files changed +32
-149
lines changed Original file line number Diff line number Diff line change 1010jobs :
1111 lint :
1212 name : Run linting and format
13+ strategy :
14+ matrix :
15+ # Only test a subset of python versions, to limit compute
16+ python : [python3.10, python3.11, python3.13]
1317 runs-on : ubuntu-latest
1418 steps :
1519 - uses : actions/checkout@v4
1620 - uses : astral-sh/setup-uv@v6
17- - run : uv python install python3.13
21+ - run : uv python install ${{ matrix.python }}
1822 - run : uv run ruff check src/obelisk/
1923 - run : uv run ruff format --check src/obelisk/
2024 - run : uv run mypy src/obelisk/
2327 strategy :
2428 matrix :
2529 os : [ubuntu-latest, macos-latest, windows-latest]
30+ # Only test a subset of python versions, to limit compute
31+ python : [python3.10, python3.11, python3.13]
2632 runs-on : ${{ matrix.os }}
2733 steps :
2834 - uses : actions/checkout@v4
2935 - uses : astral-sh/setup-uv@v6
30- - run : uv python install python3.13
36+ - run : uv python install ${{ matrix.python }}
3137 - run : uv run pytest
Original file line number Diff line number Diff line change 22name = " obelisk-py"
33description = " The one Obelisk client to rule them all"
44readme = " README.md"
5- requires-python = " >=3.9 ,<3.14"
5+ requires-python = " >=3.10 ,<3.14"
66dependencies = [
77 " ruff>=0.9.6" ,
88 " httpx>=0.28.1" ,
You can’t perform that action at this time.
0 commit comments