File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,11 @@ defaults:
1818jobs :
1919 test :
2020 runs-on : ubuntu-latest
21+ strategy :
22+ fail-fast : false
23+ matrix :
24+ python-version : ["3.9", "3.10", "3.11"]
25+
2126 steps :
2227 - uses : actions/checkout@v2
2328
2631 with :
2732 environment-file : ci/environment.yml
2833 environment-name : dask-match
34+ extra-specs : |
35+ python=${{ matrix.python-version }}
2936
3037 - name : Install Dask-Match
3138 run : python -m pip install -e . --no-deps
Original file line number Diff line number Diff line change 1+ from __future__ import annotations
2+
13import functools
24
35import numpy as np
Original file line number Diff line number Diff line change 1+ from __future__ import annotations
2+
13import functools
24import numbers
35import operator
@@ -415,7 +417,7 @@ def __dask_graph__(self):
415417 def __dask_keys__ (self ):
416418 return [(self ._name , i ) for i in range (self .npartitions )]
417419
418- def substitute (self , substitutions : dict ) -> " Expr" :
420+ def substitute (self , substitutions : dict ) -> Expr :
419421 """Substitute specific `Expr` instances within `self`
420422
421423 Parameters
You can’t perform that action at this time.
0 commit comments