Skip to content

Commit

Permalink
Bump mypy from 0.982 to 0.990 (#180)
Browse files Browse the repository at this point in the history
* Bump mypy from 0.982 to 0.990

Bumps [mypy](https://github.com/python/mypy) from 0.982 to 0.990.
- [Release notes](https://github.com/python/mypy/releases)
- [Commits](python/mypy@v0.982...v0.990)

---
updated-dependencies:
- dependency-name: mypy
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* mypy 0.990 needs this ignore

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Michael R. Crusoe <[email protected]>
  • Loading branch information
dependabot[bot] and mr-c authored Nov 8, 2022
1 parent 740615f commit f8d9972
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cwl_utils/parser/cwl_v1_0_utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: Apache-2.0
import hashlib
from typing import Any, IO, List, MutableSequence, Optional, Tuple, Union, cast
from typing import IO, Any, List, MutableSequence, Optional, Tuple, Union, cast

from ruamel import yaml
from schema_salad.exceptions import ValidationException
Expand Down
2 changes: 1 addition & 1 deletion cwl_utils/parser/cwl_v1_1_utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: Apache-2.0
import hashlib
from typing import Any, IO, List, MutableSequence, Optional, Tuple, Union, cast
from typing import IO, Any, List, MutableSequence, Optional, Tuple, Union, cast

from ruamel import yaml
from schema_salad.exceptions import ValidationException
Expand Down
2 changes: 1 addition & 1 deletion cwl_utils/parser/cwl_v1_2_utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: Apache-2.0
import hashlib
from typing import Any, IO, List, MutableSequence, Optional, Tuple, Union, cast
from typing import IO, Any, List, MutableSequence, Optional, Tuple, Union, cast

from ruamel import yaml
from schema_salad.exceptions import ValidationException
Expand Down
2 changes: 1 addition & 1 deletion mypy-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mypy==0.982
mypy==0.990
typing_extensions
types-requests
types-setuptools>=57.4.0
2 changes: 1 addition & 1 deletion mypy-stubs/rdflib/namespace/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ __all__ = [

class Namespace(str):
@property
def title(self) -> URIRef: ...
def title(self) -> URIRef: ... # type: ignore[override]
def term(self, name: Any) -> URIRef: ...
def __getitem__(self, key: Any) -> URIRef: ...
def __getattr__(self, name: str) -> URIRef: ...
Expand Down

0 comments on commit f8d9972

Please sign in to comment.