Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_BUILD_VERBOSITY: 1
CIBW_BUILD: "cp39* cp310* cp311* cp312*"
CIBW_BUILD: "cp39* cp310* cp311* cp312* cp313*"
CIBW_SKIP: "pp* *-musllinux_* *-win32 *-manylinux_i686 *-musllinux_i686 *-aarch64 *-armv7l"
CIBW_BEFORE_ALL: ${{ matrix.before_all }}
CIBW_TEST_EXTRAS: "test"
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ https://semver.org/spec/v2.0.0.html
## [Unreleased]

### Added
- Support `numpy` 2.0 (PR [#614] by @cvanelteren, solves issue [#604]).
- Support for Python 3.13 (PR [#619], solves issue [#608]).
- Support for NumPy 2.0 (PR [#614] by @cvanelteren, solves issue
[#604]).

### Changed
- **BREAKING CHANGE**: Set Python minimum supported version to 3.9.
Expand Down Expand Up @@ -1152,10 +1154,14 @@ https://semver.org/spec/v2.0.0.html
- Fix glitches in drawing of parallels and meridians.


[#619]:
https://github.com/matplotlib/basemap/pull/619
[#615]:
https://github.com/matplotlib/basemap/pull/615
[#614]:
https://github.com/matplotlib/basemap/pull/614
[#608]:
https://github.com/matplotlib/basemap/issues/608
[#604]:
https://github.com/matplotlib/basemap/issues/604
[#598]:
Expand Down
7 changes: 4 additions & 3 deletions packages/basemap/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[build-system]
requires = [
'setuptools',
'wheel',
'numpy == 2.0.0',
'setuptools >= 67.0, < 76.0',
'wheel >= 0.40, < 0.46',
'cython >= 0.29.31, < 3.1',
'numpy == 2.1.0; python_version == "3.13"',
'numpy == 2.0.0; python_version <= "3.12"',
]
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion packages/basemap/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def run(self):
"python_requires":
", ".join([
">=3.9",
"<3.13",
"<3.14",
]),
"setup_requires":
get_content("requirements-setup.txt", splitlines=True),
Expand Down