diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2022-11-22 09:53:25 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2022-12-29 20:19:11 -0700 |
commit | de3e50a34fe22214cd1517b62829884c9e10296b (patch) | |
tree | 55e1557aacb1a84cf146b2785f64ad2e185817d0 /.circleci | |
parent | 68d7aadd30cb7a4f6f32e76715b38b644df18602 (diff) | |
download | numpy-de3e50a34fe22214cd1517b62829884c9e10296b.tar.gz |
MAINT: Replace Python3.8 by Python3.9.
We will drop Python3.8 in NumPy 1.25. This PR updates the ci tests and
wheel builds to use 3.9.
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index a75f669af..0fafff94e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ jobs: # therefore a new base image chose instead to guarantee to # have a newer version >= 1.8.10 to avoid warnings # that related to the default behaviors or non-exist config options - - image: cimg/base:2021.05 + - image: cimg/python:3.9 working_directory: ~/repo @@ -47,9 +47,10 @@ jobs: name: create virtual environment, install dependencies command: | sudo apt-get update - sudo apt-get install -y python3.8 python3.8-dev python3-venv graphviz texlive-fonts-recommended texlive-latex-recommended \ + #sudo apt-get install -y python3.9 python3.9-dev python3-venv graphviz texlive-fonts-recommended texlive-latex-recommended \ + sudo apt-get install -y graphviz texlive-fonts-recommended texlive-latex-recommended \ texlive-latex-extra latexmk texlive-xetex doxygen - python3.8 -m venv venv + python3.9 -m venv venv . venv/bin/activate - run: |