8000 pyproject.toml: Upgrade setuptools for Python 3.12 beta 1 by cclauss · Pull Request #23824 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

pyproject.toml: Upgrade setuptools for Python 3.12 beta 1 #23824

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

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,9 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name != 'push'
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "pypy3.9-v7.3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12-dev", "pypy3.9-v7.3.11"]
env:
EXPECT_CPU_FEATURES: "SSE SSE2 SSE3 SSSE3 SSE41 POPCNT SSE42 AVX F16C FMA3 AVX2 AVX512F AVX512CD AVX512_KNL AVX512_KNM AVX512_SKX AVX512_CLX AVX512_CNL AVX512_ICL"
steps:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#build-backend = "mesonpy"
requires = [
# setuptools, wheel and Cython are needed for the setup.py based build
"setuptools==59.2.0",
"setuptools==67.8.0",
# `wheel` is needed for non-isolated builds, given that `meson-python`
# doesn't list it as a runtime requirement (at least in 0.11.0) - it's
# likely to be removed as a dependency in meson-python 0.12.0.
Expand Down
2 changes: 1 addition & 1 deletion tools/travis-before-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ gcc --version

popd

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

# 'setuptools', 'wheel' and 'cython' are build dependencies. This information
# is stored in pyproject.toml, but there is not yet a standard way to install
Expand Down
0