Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
fschuch committed Mar 3, 2024
1 parent 27e0566 commit 41a4fc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macos-11]
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/test_sandbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ def cube():
)

# Create the mesh
cube = stl.mesh.Mesh(np.zeros(faces.shape[0], dtype=x3d.param["mytype"]))
cube = stl.mesh.Mesh(np.zeros(faces.shape[0], dtype=stl.mesh.Mesh.dtype))
for i, f in enumerate(faces):
for j in range(3):
cube.vectors[i][j] = vertices[f[j], :]

return cube
return cube.astype(x3d.param["mytype"])


@hypothesis.settings(deadline=None)
Expand Down

0 comments on commit 41a4fc9

Please sign in to comment.