Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
b52f45ab
Commit
b52f45ab
authored
3 years ago
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test: use newer NumPy version in recent Python versions.
parent
bf8fc6b7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Tools/ci-run.sh
Tools/ci-run.sh
+1
-1
test-requirements.txt
test-requirements.txt
+1
-1
No files found.
Tools/ci-run.sh
View file @
b52f45ab
...
...
@@ -54,7 +54,7 @@ if [ -z "${PYTHON_VERSION##2.7}" ]; then
pip
install
-r
test-requirements-27.txt
||
exit
1
elif
[
-n
"
${
PYTHON_VERSION
##*-dev
}
"
]
;
then
python
-m
pip
install
-r
test-requirements.txt
||
exit
1
python
-m
pip
install
-r
test-requirements.txt
$(
if
[
-z
"
${
PYTHON_VERSION
##3.[45]*
}
"
]
;
then
echo
"'numpy<1.19.0'"
;
fi
)
||
exit
1
if
[
"
${
PYTHON_VERSION
##pypy*
}
"
-a
"
${
PYTHON_VERSION
##3.[4789]*
}
"
]
;
then
python
-m
pip
install
-r
test-requirements-cpython.txt
||
exit
1
...
...
This diff is collapsed.
Click to expand it.
test-requirements.txt
View file @
b52f45ab
numpy
< 1.19.0
numpy
coverage
pycodestyle
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment