Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jblindsay committed May 17, 2024
1 parent 752fbc6 commit 7bf9ee5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
Binary file modified .DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
# os: [ubuntu-latest, windows-latest, macOS-latest, ubuntu-20.04, ]
os: [windows-latest, macos-12] #, macOS-latest]
os: [windows-latest] #, macos-12] #, macOS-latest]
python-version: ['3.11']

steps:
Expand All @@ -34,7 +34,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: wbt-${{ matrix.os }}-${{ matrix.python-version }}
path: *.zip
path: zip_files/*.zip

# - name: Download WBT
# uses: actions/download-artifact@v4
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@
!.vscode/launch.json
!.vscode/extensions.json
*.pyc
*.zip
/.idea
/WBT/
/zip_files/
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
if "arm" in proc and "darwin" in platform.system():
proc = "m_series"

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

print("Done!")

0 comments on commit 7bf9ee5

Please sign in to comment.