Skip to content

Commit 5820b79

Browse files
committed
update pyproject.toml
1 parent 69684e0 commit 5820b79

File tree

1 file changed

+17
-10
lines changed

1 file changed

+17
-10
lines changed

packages/basemap/pyproject.toml

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
11
[build-system]
22
requires = [
3-
'setuptools',
3+
'setuptools>=42',
44
'wheel',
5-
'numpy == 1.26.1; python_version >= "3.12"',
6-
'numpy == 1.23.3; python_version == "3.11"',
7-
'numpy == 1.21.4; python_version == "3.10"',
8-
'numpy == 1.21.4; sys_platform == "darwin" and (python_version >= "3.7" and python_version <= "3.9")',
9-
'numpy == 1.16.6; sys_platform != "darwin" and (python_version >= "3.7" and python_version <= "3.9")',
10-
'numpy == 1.16.6; python_version == "2.7" or (python_version >= "3.4" and python_version <= "3.6")',
11-
'numpy == 1.11.3; python_version == "2.6" or (python_version >= "3.2" and python_version <= "3.3")',
12-
'cython >= 0.29, < 3.1; python_version >= "3.3" or python_version < "3.0"',
13-
'cython >= 0.26, < 0.27; python_version == "3.2"'
5+
'numpy>=1.21.4; python_version == "3.9"',
6+
'numpy>=1.21.4; python_version == "3.10"',
7+
'numpy>=1.23.3; python_version == "3.11"',
8+
'numpy>=1.26.1; python_version >= "3.12"',
9+
'cython>=0.29.21,<3.1'
1410
]
1511
build-backend = "setuptools.build_meta"
12+
13+
[project]
14+
name = "basemap"
15+
dynamic = ["version"]
16+
description = "Plot data on map projections with matplotlib"
17+
requires-python = ">=3.9"
18+
dependencies = [
19+
"numpy>=1.21.4",
20+
"matplotlib>=3.4.0",
21+
"pyproj>=3.0.0"
22+
]

0 commit comments

Comments
 (0)