File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed
Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 5959 - uses : actions/checkout@v4
6060
6161 - name : Build wheels
62- uses : pypa/cibuildwheel@v2.21
62+ uses : pypa/cibuildwheel@v3.0
6363 env :
6464 CIBW_BUILD : ${{ matrix.python }}-${{ matrix.buildplat[1] }}
6565
Original file line number Diff line number Diff line change 11name : build-wheels
22
3- on : [push]
4- # on: [pull_request]
3+ # on: [push]
4+ on : [pull_request]
55
66concurrency :
77 group : ${{ github.workflow }}-${{ github.ref }}
4747 steps :
4848 - uses : actions/checkout@v4
4949 - name : Build wheels
50- uses : pypa/cibuildwheel@v2.21
50+ uses : pypa/cibuildwheel@v3.0
5151 env :
5252 CIBW_BUILD : ${{ matrix.python }}-${{ matrix.buildplat[1] }}
Original file line number Diff line number Diff line change @@ -3950,7 +3950,7 @@ void HEkk::clearBadBasisChangeTabooFlag() {
39503950 bad_basis_change_[iX].taboo = false ;
39513951}
39523952
3953- bool HEkk::tabooBadBasisChange () {
3953+ bool HEkk::tabooBadBasisChange () const {
39543954 for (HighsInt iX = 0 ; iX < (HighsInt)bad_basis_change_.size (); iX++) {
39553955 if (bad_basis_change_[iX].taboo ) return true ;
39563956 }
Original file line number Diff line number Diff line change @@ -359,7 +359,7 @@ class HEkk {
359359 const BadBasisChangeReason reason,
360360 const bool taboo = false );
361361 void clearBadBasisChangeTabooFlag ();
362- bool tabooBadBasisChange ();
362+ bool tabooBadBasisChange () const ;
363363 void applyTabooRowOut (vector<double >& values, const double overwrite_with);
364364 void unapplyTabooRowOut (vector<double >& values);
365365 void applyTabooVariableIn (vector<double >& values,
Original file line number Diff line number Diff line change 99
1010#include < algorithm> // for std::transform
1111#include < cassert>
12+ #include < cctype>
1213
1314/*
1415void strRemoveWhitespace(char* str) {
Original file line number Diff line number Diff line change @@ -202,12 +202,11 @@ testpaths = ["tests"]
202202
203203[tool .cibuildwheel ]
204204build = " *"
205- skip = " cp3{6,7}-* "
205+ archs = [ " auto64 " , " auto32 " ]
206206
207207# Enable free-threaded support
208- free-threaded-support = true
208+ enable = [ " cpython-freethreading " ]
209209
210210test-command = " pytest {project}/tests"
211211test-extras = [" test" , " numpy" ]
212- test-skip = [" *universal2:arm64" ]
213212build-verbosity = 1
You can’t perform that action at this time.
0 commit comments