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 68
68
- name : Build wheels
69
69
uses : pypa/cibuildwheel@v2.21.3
70
70
env :
71
- CIBW_SKIP : pp* cp36-* cp37-* cp38-*
71
+ CIBW_SKIP : pp*
72
72
73
73
- name : Store wheel artifacts
74
74
uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -6,12 +6,21 @@ Release Notes
6
6
These are the major changes made in each release. For details of the changes
7
7
see the commit log at https://github.com/pydata/bottleneck
8
8
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
+
9
18
Bottleneck 1.4.1
10
19
================
11
20
12
21
*Release date: 2024-10-12
13
22
14
- Enhancements
23
+ Maintenance
15
24
~~~~~~~~~~~~
16
25
- Deprecate Python 3.7 and 3.8
17
26
- Add python 3.13 build
@@ -21,7 +30,7 @@ Bottleneck 1.4.0
21
30
22
31
*Release date: 2024-06-17
23
32
24
- Enhancements
33
+ Maintenance
25
34
~~~~~~~~~~~~
26
35
- Building against numpy 2.0, which ships new backwards compatible ABI
27
36
- Update CI config
@@ -31,7 +40,7 @@ Bottleneck 1.3.8
31
40
32
41
*Release date: 2024-02-04 *
33
42
34
- Enhancements
43
+ Maintenance
35
44
~~~~~~~~~~~~
36
45
- Python 3.12 wheel available
37
46
- Update CI config
@@ -41,7 +50,7 @@ Bottleneck 1.3.7
41
50
42
51
*Release date: 2023-01-20 *
43
52
44
- Enhancements
53
+ Maintenance
45
54
~~~~~~~~~~~~
46
55
- Python 3.11 wheel available
47
56
@@ -55,7 +64,7 @@ Bug Fixes
55
64
~~~~~~~~~
56
65
- Fix ValueError: cannot convert float NaN to integer with new numpy version
57
66
58
- Enhancements
67
+ Maintenance
59
68
~~~~~~~~~~~~
60
69
- Python 3.11 available in CI tests
61
70
Original file line number Diff line number Diff line change @@ -192,6 +192,7 @@ def get_long_description():
192
192
"bottleneck" : ["LICENSE" ],
193
193
"bottleneck.tests" : ["data/*/*" ],
194
194
},
195
+ python_requires = ">=3.9" ,
195
196
install_requires = ["numpy" ],
196
197
extras_require = {"doc" : ["numpydoc" , "sphinx" , "gitpython" ]},
197
198
cmdclass = cmdclass ,
You can’t perform that action at this time.
0 commit comments