File tree Expand file tree Collapse file tree 6 files changed +11
-25
lines changed Expand file tree Collapse file tree 6 files changed +11
-25
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ name: Linux x86_64
3
3
on :
4
4
pull_request :
5
5
branches :
6
- - master
7
- - 3.4
8
6
- 4.x
9
7
- 5.x
10
8
paths-ignore :
27
25
strategy :
28
26
fail-fast : false
29
27
matrix :
30
- python-version : ['3.7']
28
+ python-version : ['3.7', '3.9' ]
31
29
platform : [x64]
32
30
with_contrib : [0, 1]
33
31
without_gui : [0, 1]
93
91
ACTIONS_ALLOW_UNSECURE_COMMANDS : true
94
92
MB_PYTHON_VERSION : ${{ matrix.python-version }}
95
93
NP_TEST_DEP : numpy==1.19.4
96
- NP_TEST_DEP_LATEST : numpy==1.26 .0
94
+ NP_TEST_DEP_LATEST : numpy==2.0 .0
97
95
CONFIG_PATH : travis_config.sh
98
96
PLAT : x86_64
99
97
steps :
Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ name: Linux ARM64
3
3
on :
4
4
pull_request :
5
5
branches :
6
- - master
7
- - 3.4
8
6
- 4.x
9
7
- 5.x
10
8
paths-ignore :
27
25
strategy :
28
26
fail-fast : false
29
27
matrix :
30
- python-version : ['3.7']
28
+ python-version : ['3.7', '3.9' ]
31
29
platform : [x64]
32
30
with_contrib : [0, 1]
33
31
without_gui : [0, 1]
94
92
MB_PYTHON_VERSION : ${{ matrix.python-version }}
95
93
PLAT : aarch64
96
94
NP_TEST_DEP : numpy==1.19.4
97
- NP_TEST_DEP_LATEST : numpy==1.26 .0
95
+ NP_TEST_DEP_LATEST : numpy==2.0 .0
98
96
CONFIG_PATH : travis_config.sh
99
97
DOCKER_TEST_IMAGE : multibuild/focal_arm64v8
100
98
UNICODE_WIDTH : 32
Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ name: macOS x86_64
3
3
on :
4
4
pull_request :
5
5
branches :
6
- - master
7
- - 3.4
8
6
- 4.x
9
7
- 5.x
10
8
paths-ignore :
27
25
strategy :
28
26
fail-fast : false
29
27
matrix :
30
- python-version : ['3.7']
28
+ python-version : ['3.7', '3.9' ]
31
29
platform : [x64]
32
30
with_contrib : [0, 1]
33
31
without_gui : [0, 1]
@@ -114,7 +112,7 @@ jobs:
114
112
ACTIONS_ALLOW_UNSECURE_COMMANDS : true
115
113
MB_PYTHON_VERSION : ${{ matrix.python-version }}
116
114
NP_TEST_DEP : numpy==1.19.4
117
- NP_TEST_DEP_LATEST : numpy==1.26 .0
115
+ NP_TEST_DEP_LATEST : numpy==2.0 .0
118
116
CONFIG_PATH : travis_config.sh
119
117
PLAT : x86_64
120
118
OPENCV_TEST_DATA_PATH : ${{ github.workspace }}/opencv_extra/testdata
Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ name: macOS ARM64
3
3
on :
4
4
pull_request :
5
5
branches :
6
- - master
7
- - 3.4
8
6
- 4.x
9
7
- 5.x
10
8
paths-ignore :
24
22
strategy :
25
23
fail-fast : false
26
24
matrix :
27
- python-version : ['3.7']
25
+ python-version : ['3.7', '3.9' ]
28
26
platform : [x64]
29
27
with_contrib : [0, 1]
30
28
without_gui : [0, 1]
Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ name: Windows x86_64
3
3
on :
4
4
pull_request :
5
5
branches :
6
- - master
7
- - 3.4
8
6
- 4.x
9
7
- 5.x
10
8
paths-ignore :
23
21
strategy :
24
22
fail-fast : false
25
23
matrix :
26
- python-version : ['3.7']
24
+ python-version : ['3.7', '3.9' ]
27
25
platform : [x86, x64]
28
26
with_contrib : [0, 1]
29
27
without_gui : [0, 1]
Original file line number Diff line number Diff line change @@ -4,13 +4,9 @@ requires = [
4
4
" numpy==1.13.3; python_version=='3.6' and platform_machine != 'aarch64' and platform_machine != 'arm64'" ,
5
5
" numpy==1.17.0; python_version=='3.7' and platform_machine != 'aarch64' and platform_machine != 'arm64'" ,
6
6
" numpy==1.17.5; python_version=='3.8' and platform_machine != 'aarch64' and platform_machine != 'arm64'" ,
7
- " numpy==1.19.3; python_version<='3.9' and sys_platform == 'linux' and platform_machine == 'aarch64'" ,
8
- " numpy==1.21.0; python_version<='3.9' and sys_platform == 'darwin' and platform_machine == 'arm64'" ,
9
- " numpy==1.19.3; python_version=='3.9' and platform_machine != 'aarch64' and platform_machine != 'arm64'" ,
10
- " numpy==1.21.2; python_version=='3.10' and platform_system!='Darwin'" ,
11
- " numpy==1.21.4; python_version=='3.10' and platform_system=='Darwin'" ,
12
- " numpy==1.23.5; python_version=='3.11'" ,
13
- " numpy>=1.26.4; python_version>='3.12'" ,
7
+ " numpy==1.19.3; python_version<'3.9' and sys_platform == 'linux' and platform_machine == 'aarch64'" ,
8
+ " numpy==1.21.0; python_version<'3.9' and sys_platform == 'darwin' and platform_machine == 'arm64'" ,
9
+ " numpy==2.0.0; python_version>='3.9'" ,
14
10
" pip" ,
15
11
" scikit-build>=0.14.0" ,
16
12
" setuptools==59.2.0" ,
You can’t perform that action at this time.
0 commit comments