Skip to content

Commit 8837f2a

Browse files
committed
CI fixes
1 parent 01a5932 commit 8837f2a

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/test-vendor.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,6 @@ jobs:
5050
cache: true
5151

5252
- name: Test package
53-
run: pixi run tests-vendor
53+
run: |
54+
cd array-api-extra/
55+
pixi run tests-vendor

src/array_api_extra/_lib/_compat.pyi

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
from types import ModuleType
2+
23
from ._typing import Array, Device
34

45
class ArrayModule(ModuleType):
56
def device(self, x: Array, /) -> Device: ...
67

78
def array_namespace(
8-
*xs: Array,
9+
*xs: Array,
910
api_version: str | None = None,
10-
use_compat: bool | None =None,
11+
use_compat: bool | None = None,
1112
) -> ArrayModule: ...
12-
1313
def device(x: Array, /) -> Device: ...

0 commit comments

Comments
 (0)