Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#46)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/psf/black: 23.10.1 → 23.11.0](psf/black@23.10.1...23.11.0)
- [github.com/pre-commit/mirrors-mypy: v1.6.1 → v1.7.0](pre-commit/mirrors-mypy@v1.6.1...v1.7.0)

* pathlike generic

* string of pathlike for py38 compat

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Yakov Pechersky <[email protected]>
  • Loading branch information
pre-commit-ci[bot] and pechersky authored Nov 14, 2023
1 parent 158c1ae commit 3fa30a5
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 53 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repos:
- id: check-merge-conflict

- repo: https://github.com/psf/black
rev: 23.10.1
rev: 23.11.0
hooks:
- id: black

Expand All @@ -33,7 +33,7 @@ repos:
additional_dependencies: [darglint, flake8-docstrings]

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.6.1
rev: v1.7.0
hooks:
- id: mypy
args: [--ignore-missing-imports, --strict]
Expand Down
97 changes: 49 additions & 48 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ flake8 = "^6.1.0"
xdoctest = "^1.1.2"
flake8-docstrings = "^1.7.0"
pydocstyle = "^6.3.0"
black = "^23.10.1"
black = "^23.11.0"
pytest-cov = "^4.1.0"
pytest-mock = "^3.12.0"
coverage = "^7.3.2"
towncrier = "^23.10.0"
pre-commit = "^3.5.0"
darglint = "^1.8.1"
tbump = "^6.11.0"
mypy = "^1.6.1"
mypy = "^1.7.0"
isort = "^5.12.0"
rdkit = "^2022.9.2"

Expand Down
2 changes: 1 addition & 1 deletion sendoff/sdblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from sendoff.ctable import CTable

Pathy = Union[str, bytes, os.PathLike]
Pathy = Union[str, bytes, "os.PathLike[str]"]


@dataclass
Expand Down

0 comments on commit 3fa30a5

Please sign in to comment.