Skip to content

Commit 8a47bfa

Browse files
authored
Merge pull request #722 from asenyaev/asen/update_5.x_with_4.x
Update 5.x branch
2 parents ec5c8b5 + b0b7f9f commit 8a47bfa

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/build_wheels_macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
SDIST: ${{ matrix.build_sdist || 0 }}
5050
ENABLE_HEADLESS: ${{ matrix.without_gui }}
5151
ENABLE_CONTRIB: ${{ matrix.with_contrib }}
52-
MACOSX_DEPLOYMENT_TARGET: 10.15
52+
MACOSX_DEPLOYMENT_TARGET: 10.13
5353
steps:
5454
- name: Cleanup
5555
run: find . -mindepth 1 -delete

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ requires = [
88
"numpy==1.19.3; python_version<='3.9' and sys_platform == 'linux' and platform_machine == 'aarch64'",
99
"numpy==1.21.0; python_version<='3.9' and sys_platform == 'darwin' and platform_machine == 'arm64'",
1010
"numpy==1.19.3; python_version=='3.9' and platform_machine != 'aarch64' and platform_machine != 'arm64'",
11-
"numpy==1.21.2; python_version>='3.10'"
11+
"numpy==1.21.2; python_version>='3.10'",
12+
"numpy==1.21.4; python_version>='3.10' and platform_system=='Darwin'"
1213
]

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ def main():
3030
'numpy>=1.19.3; python_version>="3.9"',
3131
'numpy>=1.21.2; python_version>="3.10"',
3232
'numpy>=1.19.3; python_version>="3.6" and platform_system=="Linux" and platform_machine=="aarch64"',
33-
'numpy>=1.21.2; python_version>="3.6" and platform_system=="Darwin" and platform_machine=="arm64"',
33+
'numpy>=1.21.0; python_version<="3.9" and platform_system=="Darwin" and platform_machine=="arm64"',
34+
'numpy>=1.21.4; python_version>="3.10" and platform_system=="Darwin"',
3435
]
3536

3637
python_version = cmaker.CMaker.get_python_version()

0 commit comments

Comments
 (0)