Skip to content

Commit 5306f68

Browse files
authored
expr refactor: better interface (#40)
1 parent 4314c91 commit 5306f68

File tree

7 files changed

+196
-104
lines changed

7 files changed

+196
-104
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ list-author-emails:
151151
@git log --format='%aN,%aE' | sort -u | grep -v 'root'
152152

153153
mypy3: mypy
154-
mypy: ${PYSOURCES}
154+
mypy: $(filter-out setup.py,${PYSOURCES})
155155
if ! test -f $(shell python3 -c 'import ruamel.yaml; import os.path; print(os.path.dirname(ruamel.yaml.__file__))')/py.typed ; \
156156
then \
157157
rm -Rf typeshed/ruamel/yaml ; \
@@ -160,7 +160,7 @@ mypy: ${PYSOURCES}
160160
fi # if minimally required ruamel.yaml version is 0.15.99 or greater, than the above can be removed
161161
MYPYPATH=$$MYPYPATH:typeshed/ mypy --disallow-untyped-calls \
162162
--warn-redundant-casts \
163-
${MODULE}
163+
$^
164164

165165
mypyc: ${PYSOURCES}
166166
MYPYPATH=typeshed/ CWLTOOL_USE_MYPYC=1 pip install --verbose -e . && pytest --basetemp ./tmp

0 commit comments

Comments
 (0)