8000 test depends, more specific pyproject.toml · asmorkalov/opencv-python@8cc5da8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8cc5da8

Browse files
committed
test depends, more specific pyproject.toml
1 parent 0fc0d4b commit 8cc5da8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.travis.yml

Lines 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

Lines 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