Skip to content

Commit 7bf9ee5

Browse files
committed
updates
1 parent 752fbc6 commit 7bf9ee5

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.DS_Store

-2 KB
Binary file not shown.

.github/workflows/build-wheels.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
# os: [ubuntu-latest, windows-latest, macOS-latest, ubuntu-20.04, ]
15-
os: [windows-latest, macos-12] #, macOS-latest]
15+
os: [windows-latest] #, macos-12] #, macOS-latest]
1616
python-version: ['3.11']
1717

1818
steps:
@@ -34,7 +34,7 @@ jobs:
3434
uses: actions/upload-artifact@v4
3535
with:
3636
name: wbt-${{ matrix.os }}-${{ matrix.python-version }}
37-
path: *.zip
37+
path: zip_files/*.zip
3838

3939
# - name: Download WBT
4040
# uses: actions/download-artifact@v4

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,7 @@
88
!.vscode/launch.json
99
!.vscode/extensions.json
1010
*.pyc
11+
*.zip
1112
/.idea
1213
/WBT/
14+
/zip_files/

build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
if "arm" in proc and "darwin" in platform.system():
166166
proc = "m_series"
167167

168-
output_zip = os.path.join(app_dir, f"WhiteboxTools_{platform.system()}_{proc}")
168+
output_zip = os.path.join(app_dir, "zip_files", f"WhiteboxTools_{platform.system()}_{proc}")
169169
make_archive(output_zip, 'zip', output_dir)
170170

171171
print("Done!")

0 commit comments

Comments
 (0)