Skip to content

Commit

Permalink
CI: update circleci to python3.11.10, limit parallel builds. (numpy#2…
Browse files Browse the repository at this point in the history
…7826)

* 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
  • Loading branch information
mattip authored Nov 24, 2024
1 parent 4873f93 commit 1489be4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ _defaults: &defaults
docker:
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/developer/images/image/cimg/python
- image: cimg/python:3.11.8
- image: cimg/python:3.11.10
working_directory: ~/repo


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

0 comments on commit 1489be4

Please sign in to comment.