File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -245,9 +245,9 @@ def random_outdir() -> str:
245245fcntl : Optional [ModuleType ] = None
246246msvcrt : Optional [ModuleType ] = None
247247try :
248- import fcntl # type: ignore
248+ import fcntl
249249except ImportError :
250- import msvcrt # type: ignore
250+ import msvcrt
251251
252252
253253def shared_file_lock (fd : IO [Any ]) -> None :
Original file line number Diff line number Diff line change 1- mypy==0.991
1+ mypy==1.0.0 # also update pyproject.toml
22ruamel.yaml>=0.16.0,<0.17.22
33schema-salad>=8.2.20211104054942,<9
44cwl-utils >=0.19
Original file line number Diff line number Diff line change 22requires = [
33 " setuptools>=45" ,
44 ' mypy==0.971; python_version == "3.6"' , # last version for Python 3.6
5- ' mypy==0.991 ; python_version >= "3.7"' ,
5+ ' mypy==1.0 ; python_version >= "3.7"' , # also update mypy-requirements.txt
66 " types-pkg_resources" ,
77 " types-requests" ,
88 " types-psutil" ,
You can’t perform that action at this time.
0 commit comments