File tree Expand file tree Collapse file tree 3 files changed +16
-6
lines changed
Expand file tree Collapse file tree 3 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 6868 - name : Build wheels
6969 uses : pypa/cibuildwheel@v2.21.3
7070 env :
71- CIBW_SKIP : pp* cp36-* cp37-* cp38-*
71+ CIBW_SKIP : pp*
7272
7373 - name : Store wheel artifacts
7474 uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -6,12 +6,21 @@ Release Notes
66These are the major changes made in each release. For details of the changes
77see the commit log at https://github.com/pydata/bottleneck
88
9+ Bottleneck 1.4.2
10+ ================
11+
12+ *Release date: 2024-10-18
13+
14+ Maintenance
15+ ~~~~~~~~~~~
16+ - Add `python_requires ` to `setup.py ` to limit build to 3.9+
17+
918Bottleneck 1.4.1
1019================
1120
1221*Release date: 2024-10-12
1322
14- Enhancements
23+ Maintenance
1524~~~~~~~~~~~~
1625- Deprecate Python 3.7 and 3.8
1726- Add python 3.13 build
@@ -21,7 +30,7 @@ Bottleneck 1.4.0
2130
2231*Release date: 2024-06-17
2332
24- Enhancements
33+ Maintenance
2534~~~~~~~~~~~~
2635- Building against numpy 2.0, which ships new backwards compatible ABI
2736- Update CI config
@@ -31,7 +40,7 @@ Bottleneck 1.3.8
3140
3241*Release date: 2024-02-04 *
3342
34- Enhancements
43+ Maintenance
3544~~~~~~~~~~~~
3645- Python 3.12 wheel available
3746- Update CI config
@@ -41,7 +50,7 @@ Bottleneck 1.3.7
4150
4251*Release date: 2023-01-20 *
4352
44- Enhancements
53+ Maintenance
4554~~~~~~~~~~~~
4655- Python 3.11 wheel available
4756
@@ -55,7 +64,7 @@ Bug Fixes
5564~~~~~~~~~
5665- Fix ValueError: cannot convert float NaN to integer with new numpy version
5766
58- Enhancements
67+ Maintenance
5968~~~~~~~~~~~~
6069- Python 3.11 available in CI tests
6170
Original file line number Diff line number Diff line change @@ -192,6 +192,7 @@ def get_long_description():
192192 "bottleneck" : ["LICENSE" ],
193193 "bottleneck.tests" : ["data/*/*" ],
194194 },
195+ python_requires = ">=3.9" ,
195196 install_requires = ["numpy" ],
196197 extras_require = {"doc" : ["numpydoc" , "sphinx" , "gitpython" ]},
197198 cmdclass = cmdclass ,
You can’t perform that action at this time.
0 commit comments