Skip to content

Commit

Permalink
Fix comtypes dependency (instamatic-dev#92)
Browse files Browse the repository at this point in the history
* Fix platform value

* Update hooks
  • Loading branch information
stefsmeets authored Oct 21, 2024
1 parent eb4e885 commit 6c4ab42
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
Expand All @@ -21,7 +21,7 @@ repos:
hooks:
- id: nbcheckorder
- repo: https://github.com/myint/docformatter
rev: v1.7.5
rev: master # https://github.com/PyCQA/docformatter/issues/293
hooks:
- id: docformatter
- repo: https://github.com/pre-commit/mirrors-autopep8
Expand All @@ -30,7 +30,7 @@ repos:
- id: autopep8
args: ['--in-place', '--ignore=E501,W504']
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.4.9'
rev: 'v0.7.0'
hooks:
- id: ruff
args: [--fix]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ classifiers = [
"Topic :: Software Development :: Libraries",
]
dependencies = [
"comtypes >= 1.1.7; sys_platform == 'windows'",
"comtypes >= 1.1.7; sys_platform == 'win32'",
"h5py >= 2.10.0",
"ipython >= 7.11.1",
"lmfit >= 1.0.0",
Expand Down

0 comments on commit 6c4ab42

Please sign in to comment.