File tree 8 files changed +15
-13
lines changed
8 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 56
56
# github.event.head_commit.message otherwise on pull
57
57
# requests)
58
58
initialize :
59
- runs-on : ubuntu-22 .04
59
+ runs-on : ubuntu-24 .04
60
60
61
61
outputs :
62
62
COMMIT_MESSAGE : ${{ steps.setup.outputs.COMMIT_MSG }}
@@ -130,7 +130,7 @@ jobs:
130
130
strategy :
131
131
matrix :
132
132
os :
133
- - ubuntu-22 .04
133
+ - ubuntu-24 .04
134
134
python-version :
135
135
- 3.9
136
136
@@ -173,7 +173,7 @@ jobs:
173
173
strategy :
174
174
matrix :
175
175
os :
176
- - ubuntu-22 .04 # https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204 -Readme.md
176
+ - ubuntu-24 .04 # https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2404 -Readme.md
177
177
- macos-12 # https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md
178
178
- macos-14 # https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md
179
179
- windows-2019 # https://github.com/actions/runner-images/blob/main/images/windows/Windows2019-Readme.md
@@ -385,7 +385,7 @@ jobs:
385
385
strategy :
386
386
matrix :
387
387
os :
388
- - ubuntu-22 .04
388
+ - ubuntu-24 .04
389
389
python-version :
390
390
- 3.9
391
391
@@ -438,7 +438,7 @@ jobs:
438
438
strategy :
439
439
matrix :
440
440
os :
441
- - ubuntu-22 .04
441
+ - ubuntu-24 .04
442
442
- macos-12
443
443
- macos-14
444
444
- windows-2019
@@ -592,7 +592,7 @@ jobs:
592
592
strategy :
593
593
matrix :
594
594
os :
595
- - ubuntu-22 .04
595
+ - ubuntu-24 .04
596
596
python-version :
597
597
- 3.9
598
598
@@ -765,7 +765,7 @@ jobs:
765
765
- test_dependencies
766
766
767
767
if : startsWith(github.ref, 'refs/tags/v')
768
- runs-on : ubuntu-22 .04
768
+ runs-on : ubuntu-24 .04
769
769
770
770
steps :
771
771
- name : Download wheels and sdist
Original file line number Diff line number Diff line change 32
32
strategy :
33
33
matrix :
34
34
os :
35
- - ubuntu-22 .04
35
+ - ubuntu-24 .04
36
36
- macos-14
37
37
- macos-12
38
38
- windows-2019
Original file line number Diff line number Diff line change 22
22
strategy :
23
23
matrix :
24
24
os :
25
- - ubuntu-22 .04
25
+ - ubuntu-24 .04
26
26
python-version :
27
27
- 3.9
28
28
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ dependencies:
45
45
- ruamel.yaml
46
46
- ruff>=0.3,<0.4
47
47
- scikit-build
48
+ - setuptools>=69,<74
48
49
- sqlalchemy
49
50
- tar
50
51
- threadpoolctl
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ dependencies:
44
44
- ruamel.yaml
45
45
- ruff>=0.3,<0.4
46
46
- scikit-build
47
+ - setuptools>=69,<74
47
48
- sqlalchemy
48
49
- threadpoolctl
49
50
- tornado
Original file line number Diff line number Diff line change @@ -110,8 +110,8 @@ struct Enum : public EnumTraits
110
110
iterator ( int v ) : m_v( v ) {}
111
111
112
112
Enum operator *() { return Enum ( ( EnumV ) m_v ); }
113
- bool operator ==(const iterator &rhs) { return m_v == rhs.m_v ; }
114
- bool operator !=(const iterator &rhs) { return !(*this == rhs); }
113
+ bool operator ==(const iterator &rhs) const { return m_v == rhs.m_v ; }
114
+ bool operator !=(const iterator &rhs) const { return !(*this == rhs); }
115
115
116
116
iterator &operator ++() {
117
117
++m_v;
Original file line number Diff line number Diff line change @@ -1357,7 +1357,7 @@ class Rank
1357
1357
private:
1358
1358
ost<std::less<double >> m_mintree;
1359
1359
ost<std::greater<double >> m_maxtree;
1360
- double m_lastval;
1360
+ double m_lastval = std::numeric_limits< double >::quiet_NaN() ;
1361
1361
1362
1362
int64_t m_method;
1363
1363
int64_t m_nanopt;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ requires = [
6
6
" pyarrow>=7.0.0" ,
7
7
" ruamel.yaml" ,
8
8
" scikit-build" ,
9
- " setuptools>=69" ,
9
+ " setuptools>=69,<74 " ,
10
10
]
11
11
build-backend =" setuptools.build_meta"
12
12
You can’t perform that action at this time.
0 commit comments