Skip to content

Commit

Permalink
Merge pull request #376 from gaiaresources/BDRSPS-1137-mypy
Browse files Browse the repository at this point in the history
BDRSPS-1137 Upgrade mypy to 1.14.1
  • Loading branch information
serge-gaia authored Jan 3, 2025
2 parents 1f13c43 + d4fdfde commit 031c6cf
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 38 deletions.
2 changes: 1 addition & 1 deletion docs/tables/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class MarkdownDialect(csv.excel):


# Register the dialect with the csv module
csv.register_dialect("markdown", MarkdownDialect)
csv.register_dialect("markdown", MarkdownDialect) # type: ignore[arg-type]


class MarkdownDictWriter(csv.DictWriter): # type: ignore[type-arg]
Expand Down
78 changes: 42 additions & 36 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ attrs = "^24.3.0"
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
pytest-mock = "^3.14.0"
mypy = "==1.13.0"
mypy = "==1.14.1"
types-python-dateutil = "==2.9.0.20241003" # keep version synced with actual library
ruff = "==0.8.4"
pandas = "^2.2.3"
Expand Down

0 comments on commit 031c6cf

Please sign in to comment.