File tree 4 files changed +13
-6
lines changed
4 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 82
82
83
83
env :
84
84
CIBW_BUILD_VERBOSITY : 1
85
- CIBW_BUILD : " cp39* cp310* cp311* cp312*"
85
+ CIBW_BUILD : " cp39* cp310* cp311* cp312* cp313* "
86
86
CIBW_SKIP : " pp* *-musllinux_* *-win32 *-manylinux_i686 *-musllinux_i686 *-aarch64 *-armv7l"
87
87
CIBW_BEFORE_ALL : ${{ matrix.before_all }}
88
88
CIBW_TEST_EXTRAS : " test"
Original file line number Diff line number Diff line change @@ -13,7 +13,9 @@ https://semver.org/spec/v2.0.0.html
13
13
## [ Unreleased]
14
14
15
15
### Added
16
- - Support ` numpy ` 2.0 (PR [ #614 ] by @cvanelteren , solves issue [ #604 ] ).
16
+ - Support for Python 3.13 (PR [ #619 ] , solves issue [ #608 ] ).
17
+ - Support for NumPy 2.0 (PR [ #614 ] by @cvanelteren , solves issue
18
+ [ #604 ] ).
17
19
18
20
### Changed
19
21
- ** BREAKING CHANGE** : Set Python minimum supported version to 3.9.
@@ -1152,10 +1154,14 @@ https://semver.org/spec/v2.0.0.html
1152
1154
- Fix glitches in drawing of parallels and meridians.
1153
1155
1154
1156
1157
+ [ #619 ] :
1158
+ https://github.com/matplotlib/basemap/pull/619
1155
1159
[ #615 ] :
1156
1160
https://github.com/matplotlib/basemap/pull/615
1157
1161
[ #614 ] :
1158
1162
https://github.com/matplotlib/basemap/pull/614
1163
+ [ #608 ] :
1164
+ https://github.com/matplotlib/basemap/issues/608
1159
1165
[ #604 ] :
1160
1166
https://github.com/matplotlib/basemap/issues/604
1161
1167
[ #598 ] :
Original file line number Diff line number Diff line change 1
1
[build-system ]
2
2
requires = [
3
- ' setuptools' ,
4
- ' wheel' ,
5
- ' numpy == 2.0.0' ,
3
+ ' setuptools >= 67.0, < 76.0' ,
4
+ ' wheel >= 0.40, < 0.46' ,
6
5
' cython >= 0.29.31, < 3.1' ,
6
+ ' numpy == 2.1.0; python_version == "3.13"' ,
7
+ ' numpy == 2.0.0; python_version <= "3.12"' ,
7
8
]
8
9
build-backend = " setuptools.build_meta"
Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ def run(self):
207
207
"python_requires" :
208
208
", " .join ([
209
209
">=3.9" ,
210
- "<3.13 " ,
210
+ "<3.14 " ,
211
211
]),
212
212
"setup_requires" :
213
213
get_content ("requirements-setup.txt" , splitlines = True ),
You can’t perform that action at this time.
0 commit comments