Skip to content

Commit 1489be4

Browse files
authored
CI: update circleci to python3.11.10, limit parallel builds. (numpy#27826)
* CI: update circleci to python3.12.7, ubuntu 20.04.3 [skip actions][skip azp] * limit to 2 parallel build jobs * using python3.12 fails to build numpy.distutils, use 3.11 instead * typo
1 parent 4873f93 commit 1489be4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ _defaults: &defaults
99
docker:
1010
# CircleCI maintains a library of pre-built images
1111
# documented at https://circleci.com/developer/images/image/cimg/python
12-
- image: cimg/python:3.11.8
12+
- image: cimg/python:3.11.10
1313
working_directory: ~/repo
1414

1515

@@ -60,7 +60,7 @@ jobs:
6060
# get newer, pre-release versions of critical packages
6161
pip install --progress-bar=off --pre -r requirements/doc_requirements.txt
6262
# then install numpy HEAD, which will override the version installed above
63-
spin build --with-scipy-openblas=64
63+
spin build --with-scipy-openblas=64 -j 2
6464
6565
- run:
6666
name: build devdocs w/ref warnings
@@ -97,8 +97,8 @@ jobs:
9797
# - validates ReST blocks (via validate_rst_syntax)
9898
# - checks that all of a module's `__all__` is reflected in the
9999
# module-level docstring autosummary
100-
echo calling python tools/refguide_check.py -v
101-
python tools/refguide_check.py -v
100+
echo calling python3 tools/refguide_check.py -v
101+
python3 tools/refguide_check.py -v
102102
103103
- persist_to_workspace:
104104
root: ~/repo

0 commit comments

Comments
 (0)