Skip to content

Commit

Permalink
cmp
Browse files Browse the repository at this point in the history
  • Loading branch information
chrystalchern committed Apr 7, 2024
2 parents 7f5daa9 + 8f5ecad commit 9724d32
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/SECURITY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Reporting Security Issues

Open and issue.
Open an issue on Github.
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ jobs:

- uses: pypa/cibuildwheel@v2.16
env:
CIBW_ARCHS_MACOS: auto universal2
CIBW_ARCHS_MACOS: x86_64 # auto universal2

- name: Verify clean directory
run: git diff --exit-code
shell: bash
# - name: Verify clean directory
# run: git diff --exit-code
# shell: bash

- name: Upload wheels
uses: actions/upload-artifact@v3
Expand Down
14 changes: 5 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -109,18 +109,16 @@ where = ["src"]
exclude = ["libg3*", "site*"]

[tool.setuptools.package-data]
opensees = ["*.py", "*.so", "*.dll"]
opensees = ["*.py", "*.so", "*.dll", "*.dylib"]

[tool.setuptools.exclude-package-data]
opensees = ["site*", "docs*", "*.html", "*.cmake"]


[tool.cibuildwheel]
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_28"
# manylinux-x86_64-image="manylinux_2_24"
manylinux-x86_64-image="manylinux2014"

# [tool.cibuildwheel.windows]
# before-build="pip install delvewheel"
Expand All @@ -130,9 +128,7 @@ manylinux-x86_64-image="manylinux2014"
skip = ["*arm64*", "pp*", "cp36*", "*i686*", "UNKNOWN*", "cp38*", "cp37*"] # "cp311*", "cp312*"

[tool.cibuildwheel.linux]
# before-all = "yum install -y tcl-devel mysql-devel lapack-devel"
before-all = "yum install -y tcl-devel mysql-devel openblas-devel"
#before-all = "yum-config-manager --add-repo https://yum.repos.intel.com/setup/intelproducts.repo && yum install intel-mkl-2020.0-088"
# before-all = "rpm --import https://yum.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB && yum install intel-mkl"
skip = ["pp*", "*musllinux*", "cp36*", "*i686*", "UNKNOWN*", "cp38*", "cp37*", "cp39*"] # "cp311*", "cp312*"
before-all = "yum install -y tcl-devel mysql-devel openblas-devel" # lapack-devel
repair-wheel-command = "auditwheel repair --exclude libOpenSeesRT.so -w {dest_dir} {wheel}"

0 comments on commit 9724d32

Please sign in to comment.