Skip to content

Commit 109e089

Browse files
committed
Fix missing dependency of the workflow on pyright
1 parent c5b6051 commit 109e089

3 files changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/update_speakeasy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Install dependencies
4040
run: |
41-
uv sync --group dev --no-default-groups
41+
uv sync --group dev --group lint --no-default-groups
4242
4343
- name: Install Speakeasy CLI
4444
run: |

packages/mistralai_azure/pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ dev = [
1818
"pytest>=8.2.2,<9",
1919
"pytest-asyncio>=0.23.7,<0.24",
2020
]
21+
lint = [
22+
"ruff>=0.11.10,<0.12",
23+
"pyright>=1.1.401,<2",
24+
"mypy==1.15.0",
25+
]
2126

2227
[tool.setuptools.package-data]
2328
"*" = ["py.typed", "src/mistralai_azure/py.typed"]

packages/mistralai_gcp/pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ dev = [
2323
"pytest-asyncio>=0.23.7,<0.24",
2424
"types-python-dateutil>=2.9.0.20240316,<3",
2525
]
26+
lint = [
27+
"ruff>=0.11.10,<0.12",
28+
"pyright>=1.1.401,<2",
29+
"mypy==1.15.0",
30+
]
2631

2732
[tool.setuptools.package-data]
2833
"*" = ["py.typed", "src/mistralai_gcp/py.typed"]

0 commit comments

Comments
 (0)