Skip to content

Commit

Permalink
fixes on win32
Browse files Browse the repository at this point in the history
  • Loading branch information
chrystalchern committed Apr 7, 2024
1 parent 020cb59 commit 7f5daa9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ opensees = ["site*", "docs*", "*.html", "*.cmake"]
skip = ["pp*", "*musllinux*", "cp36*", "*i686*", "UNKNOWN*", "cp38*", "cp37*", "cp39*"] # "cp311*", "cp312*"
# manylinux-x86_64-image = "manylinux_2_28"
manylinux-x86_64-image="manylinux2014"

# manylinux-x86_64-image="manylinux_2_24"

# [tool.cibuildwheel.windows]
Expand Down
4 changes: 3 additions & 1 deletion scripts/win_repair.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/usr/bin/env python
"""
./win_repair.py ./win32/ wheelhouse/*.whl
Claudio Perez
"""
import sys
import zipfile
Expand All @@ -13,5 +15,5 @@
with zipfile.ZipFile(build, 'a') as zipf:
for file in Path(sys.argv[1]).glob("*.dll"):
print(f" :: adding {file.name} to {bindir/file.name}", file=sys.stderr)
zipf.write(file,bindir/file.name)
zipf.write(file, bindir/file.name)

Binary file modified site/contrib/static/Tfp_displaced.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7f5daa9

Please sign in to comment.