Skip to content

Commit 1ee3971

Browse files
committed
pyproject.toml: Upgrade setuptools for Python 3.12 beta 1
Related to numpy#23808 https://www.python.org/download/pre-releases https://docs.python.org/3.12/whatsnew/3.12.html
1 parent 7669b86 commit 1ee3971

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/build_test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
runs-on: ubuntu-latest
6666
if: github.event_name != 'push'
6767
strategy:
68+
fail-fast: false
6869
matrix:
6970
python-version: ["3.9", "3.10", "3.11", "pypy3.9-v7.3.11"]
7071
env:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#build-backend = "mesonpy"
55
requires = [
66
# setuptools, wheel and Cython are needed for the setup.py based build
7-
"setuptools==59.2.0",
7+
"setuptools==67.8.0",
88
# `wheel` is needed for non-isolated builds, given that `meson-python`
99
# doesn't list it as a runtime requirement (at least in 0.11.0) - it's
1010
# likely to be removed as a dependency in meson-python 0.12.0.

tools/travis-before-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ gcc --version
3636

3737
popd
3838

39-
pip install --upgrade pip 'setuptools<49.2.0' wheel
39+
pip install --upgrade pip setuptools wheel
4040

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

0 commit comments

Comments
 (0)