8000 ENH: Vendor meson for multi-target build support by charris · Pull Request #24403 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

ENH: Vendor meson for multi-target build support #24403

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 12, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
CI: fix sdist and musllinux jobs
  • Loading branch information
rgommers authored and charris committed Aug 12, 2023
commit f5560b143c3c1eb23f75e41897f9f86ea7980eb8
1 change: 1 addition & 0 deletions .github/workflows/linux_musl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
git checkout $GITHUB_BASE_REF
git -c user.email="you@example.com" merge --no-commit my_ref_name
fi
git submodule update --init

ln -s /usr/local/bin/python3.10 /usr/local/bin/python

Expand Down
4 changes: 2 additions & 2 deletions tools/travis-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fi

source builds/venv/bin/activate

pip install --upgrade pip 'setuptools<49.2.0'
pip install --upgrade pip 'setuptools<49.2.0' build

pip install -r build_requirements.txt

Expand Down Expand Up @@ -223,7 +223,7 @@ elif [ -n "$USE_SDIST" ] && [ $# -eq 0 ]; then
$PYTHON -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)"
# ensure some warnings are not issued
export CFLAGS=$CFLAGS" -Wno-sign-compare -Wno-unused-result -Wno-error=undef"
$PYTHON setup.py sdist
$PYTHON -m build --sdist
# Make another virtualenv to install into
$PYTHON -m venv venv-for-wheel
. venv-for-wheel/bin/activate
Expand Down
0