Skip to content

Commit 754ce65

Browse files
committed
update docs
1 parent 0db6ba2 commit 754ce65

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/deploy_anaconda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
with:
1717
python_versions: '["3.11", "3.12", "3.13"]'
1818
apt_package: 'libfftw3-double3 libfftw3-dev'
19-
os_list: '["ubuntu-latest", "macos-latest", "windows-latest"]'
19+
os_list: '["ubuntu-latest", "macos-latest"]'
2020
secrets:
2121
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}

meta.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ requirements:
1515
build:
1616
- {{ compiler('cxx') }}
1717
- llvm-openmp # [osx]
18-
- m2-pkg-config # [win]
19-
- fftw
18+
# - m2-pkg-config # [win]
2019
host:
2120
- python {{ PY_VER }}*
2221
- python_abi 3.13.* *_cp313 # [py==313]

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,15 @@ repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}"
108108
test-command = "cd {project}; python -m pytest --config-file=pytest.ini"
109109

110110
[tool.cibuildwheel.macos]
111-
archs = ["arm64"]
111+
# archs = ["arm64"]
112+
archs = []
112113
before-build = "brew install fftw"
113114
build = ["cp311-*", "cp312-*", "cp313-*"]
114115
repair-wheel-command = "delocate-wheel -w {dest_dir} -v {wheel}" # --exclude=libomp.dylib
115116
test-command = 'cd {project}; python -m pytest --config-file=pytest.ini' # DYLD_PRINT_LIBRARIES=NO
116117

117118
[tool.cibuildwheel.windows]
118-
archs = ["AMD64"]
119+
# archs = ["AMD64"]
120+
archs = []
119121
build = ["cp311-*", "cp312-*", "cp313-*"]
120122
test-command = 'cd /d {project} && python -m pytest --config-file=pytest.ini'

0 commit comments

Comments
 (0)