Skip to content

Commit

Permalink
Patch release (#39)
Browse files Browse the repository at this point in the history
* bump ci versions (#35)

* Fix VTK import (#37)

* [pre-commit.ci] pre-commit autoupdate (#38)

updates:
- [github.com/codespell-project/codespell: v2.2.4 → v2.2.5](codespell-project/codespell@v2.2.4...v2.2.5)
- [github.com/asottile/pyupgrade: v3.4.0 → v3.8.0](asottile/pyupgrade@v3.4.0...v3.8.0)
- [github.com/python-jsonschema/check-jsonschema: 0.23.1 → 0.23.2](python-jsonschema/check-jsonschema@0.23.1...0.23.2)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

---------

Co-authored-by: Alex Kaszynski <[email protected]>
Co-authored-by: Alex Fernandez <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
4 people authored Jul 5, 2023
1 parent 0d68d6b commit 7228546
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/testing-and-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
python-version: ['3.8', '3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ repos:
]

- repo: https://github.com/codespell-project/codespell
rev: v2.2.4
rev: v2.2.5
hooks:
- id: codespell
args: [
Expand Down Expand Up @@ -61,7 +61,7 @@ repos:
]

- repo: https://github.com/asottile/pyupgrade
rev: v3.4.0
rev: v3.8.0
hooks:
- id: pyupgrade
args: [--py38-plus, --keep-runtime-typing]
Expand All @@ -77,6 +77,6 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.1
rev: 0.23.2
hooks:
- id: check-github-workflows
2 changes: 1 addition & 1 deletion pyiges/check_imports.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
try:
import geomdl
import pyvista
from pyvista._vtk import vtkAppendPolyData
from vtkmodules.vtkFiltersCore import vtkAppendPolyData

_IS_FULL_MODULE = True
except (ModuleNotFoundError, ImportError) as exc:
Expand Down

0 comments on commit 7228546

Please sign in to comment.