Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f44f0c7

Browse files
committed
Relax numpy build dependency
1 parent 0110485 commit f44f0c7

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ https://semver.org/spec/v2.0.0.html
1212

1313
## [Unreleased]
1414

15+
### Fixed
16+
- Relax `numpy` build dependency to ensure that builds work on MacOS.
17+
1518
## [1.3.3] - 2022-05-11
1619

1720
### Changed

packages/basemap/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
requires = [
33
'setuptools',
44
'wheel',
5-
'numpy == 1.21.4; python_version >= "3.10"',
6-
'numpy == 1.16.6; python_version == "2.7" or (python_version >= "3.4" and python_version <= "3.9")',
7-
'numpy == 1.11.3; python_version == "2.6" or (python_version >= "3.2" and python_version <= "3.3")',
5+
'numpy >= 1.21.4; python_version >= "3.10"',
6+
'numpy >= 1.16.6; python_version == "2.7" or (python_version >= "3.4" and python_version <= "3.9")',
7+
'numpy >= 1.11.3; python_version == "2.6" or (python_version >= "3.2" and python_version <= "3.3")',
88
'cython >= 0.29, < 3.1; python_version >= "3.3" or python_version < "3.0"',
99
'cython >= 0.26, < 0.27; python_version == "3.2"'
1010
]

0 commit comments

Comments
 (0)