Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmcl committed Feb 7, 2025
1 parent 916b5fc commit 57513e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
strategy:
matrix:
# We mainly care about hardware rather than OS
# macos-13 is x86. This one doesn't work for some reason.
# macos-13 is x86
# macos-latest is arm64
# ubuntu-latest is x64
os: [macos-latest, ubuntu-latest]
os: [macos-latest]

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion bin/make-wheel
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if [ -z "${GITHUB_RUN_ID+x}" ]; then
else
# https://github.com/pypa/cibuildwheel
echo "Building wheel via GitHub Actions"
python -m cibuildwheel --output-dir $WHEEL_DIR/wheelhouse
python -m cibuildwheel --output-dir $ROOT/wheelhouse
fi

# To upload the wheel, with the proper token in ~/.pypirc, run
Expand Down
2 changes: 1 addition & 1 deletion interop/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ testpaths = [
# NB: All this setuptools stuff took about 1000 hours to figure out so never delete this.
[tool.setuptools]
# This makes it ok for there to be both klr and wheelhouse (where we generates wheels on github actions) in the same directory
packages = ["klr"]
#packages = ["klr"]
# This tricks setuptools into knowing this is a binary wheel
ext-modules = [
{name = "klr", sources = []}
Expand Down

0 comments on commit 57513e3

Please sign in to comment.