Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8cc5da8

Browse filesBrowse files
committed
test depends, more specific pyproject.toml
1 parent 0fc0d4b commit 8cc5da8
Copy full SHA for 8cc5da8

File tree

2 files changed

+6
-6
lines changed
Filter options

2 files changed

+6
-6
lines changed

‎.travis.yml

Copy file name to clipboardExpand all lines: .travis.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,11 +377,11 @@ jobs:
377377
- PLAT=aarch64
378378
- ENABLE_CONTRIB=0
379379
- ENABLE_HEADLESS=0
380-
- TEST_DEPENDS=numpy==1.17.3
380+
- TEST_DEPENDS=numpy==1.19.0
381381
- USE_CCACHE=0
382382
cache:
383383
directories: $HOME/.ccache
384-
384+
385385
# headless builds for Linux
386386
- os: linux
387387
language: generic

‎pyproject.toml

Copy file name to clipboard
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[build-system]
22
requires = [
33
"setuptools", "wheel", "scikit-build", "cmake", "pip",
4-
"numpy==1.13.3; python_version=='3.6'",
4+
"numpy==1.13.3; python_version=='3.6' and platform_machine != 'aarch64'",
55
"numpy==1.19.0; python_version>='3.6' and sys_platform == 'linux' and platform_machine == 'aarch64'",
6-
"numpy==1.14.5; python_version=='3.7'",
7-
"numpy==1.17.3; python_version=='3.8'",
8-
"numpy==1.19.3; python_version>='3.9'"
6+
"numpy==1.14.5; python_version=='3.7' and platform_machine != 'aarch64'",
7+
"numpy==1.17.3; python_version=='3.8' and platform_machine != 'aarch64'",
8+
"numpy==1.19.3; python_version>='3.9' and platform_machine != 'aarch64'"
99
]

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.