File tree 3 files changed +4
-4
lines changed 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:
245
245
fcntl : Optional [ModuleType ] = None
246
246
msvcrt : Optional [ModuleType ] = None
247
247
try :
248
- import fcntl # type: ignore
248
+ import fcntl
249
249
except ImportError :
250
- import msvcrt # type: ignore
250
+ import msvcrt
251
251
252
252
253
253
def 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
2
2
ruamel.yaml>=0.16.0,<0.17.22
3
3
schema-salad>=8.2.20211104054942,<9
4
4
cwl-utils >=0.19
Original file line number Diff line number Diff line change 2
2
requires = [
3
3
" setuptools>=45" ,
4
4
' 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
6
6
" types-pkg_resources" ,
7
7
" types-requests" ,
8
8
" types-psutil" ,
You can’t perform that action at this time.
0 commit comments