Skip to content

Commit

Permalink
CI: update to latest NumPy/SciPy versions
Browse files Browse the repository at this point in the history
  • Loading branch information
reneeotten committed Jan 11, 2023
1 parent c2de93c commit 1a3b100
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ exclude: 'doc/conf.py'

repos:
- repo: https://github.com/asottile/pyupgrade
rev: v3.2.2
rev: v3.3.1
hooks:
- id: pyupgrade
args: [--py37-plus]
Expand All @@ -29,7 +29,7 @@ repos:
additional_dependencies: [flake8-deprecated, flake8-mutable]

- repo: https://github.com/PyCQA/isort/
rev: 5.10.1
rev: 5.11.4
hooks:
- id: isort

Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ stages:
displayName: 'Install build, pip, setuptools, wheel, pybind11, and cython'
- script: |
export PATH=/home/vsts/.local/bin:$PATH
export numpy_version=1.23.5
export numpy_version=1.24.1
wget https://github.com/numpy/numpy/releases/download/v${numpy_version}/numpy-${numpy_version}.tar.gz
tar xzvf numpy-${numpy_version}.tar.gz
cd numpy-${numpy_version}
Expand All @@ -273,7 +273,7 @@ stages:
displayName: 'Install pythran'
- script: |
export PATH=/home/vsts/.local/bin:$PATH
export scipy_version=1.9.3
export scipy_version=1.10.0
wget https://github.com/scipy/scipy/releases/download/v${scipy_version}/scipy-${scipy_version}.tar.gz
tar xzvf scipy-${scipy_version}.tar.gz
cd scipy-${scipy_version}
Expand Down

1 comment on commit 1a3b100

@reneeotten
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sorry, this version updates broke the CI - now one test is failing. I'll take a look and fix later in the week - apparently too jetlegged still to do things ;)

Please sign in to comment.