Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Commit

Permalink
Merge pull request #690 from chainer/fix-numpy-version
Browse files Browse the repository at this point in the history
Fix numpy version in slow tests
  • Loading branch information
asi1024 authored Oct 11, 2021
2 parents d96a9ff + c73380c commit 7dbdd08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def main():
cupy_accelerators += ['cub']

elif args.test == 'cupy-py36':
numpy_requires = 'numpy==1.16.*'
numpy_requires = 'numpy==1.17.*'
scipy_requires = 'scipy==1.4.*'

conf = {
Expand All @@ -307,7 +307,7 @@ def main():
use_gcc6_or_later = True

elif args.test == 'cupy-slow':
numpy_requires = 'numpy==1.16.*'
numpy_requires = 'numpy==1.17.*'
scipy_requires = 'scipy==1.4.*'

base = 'ubuntu18_py36'
Expand Down

0 comments on commit 7dbdd08

Please sign in to comment.