Skip to content

Commit fddbb6e

Browse files
authored
Don't use sphinx 8.2.0 yet (#935)
Currently leads to build errors, probably due to extension incompatibility of nbsphinx. See spatialaudio/nbsphinx#825
2 parents 8aa144f + 0590c0f commit fddbb6e

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

environment-dev-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies:
3131
- requests
3232
- scipy
3333
- setuptools
34-
- sphinx=8
34+
- sphinx >=8,<8.2.0
3535
- sphinx-copybutton
3636
- sphinx-favicon
3737
- sphinx-rtd-theme=3

environment-dev-mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies:
2929
- requests
3030
- scipy
3131
- setuptools
32-
- sphinx=8
32+
- sphinx >=8,<8.2.0
3333
- sphinx-copybutton
3434
- sphinx-favicon
3535
- sphinx-rtd-theme=3

environment-dev-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies:
2121
- requests
2222
- scipy
2323
- setuptools
24-
- sphinx=8
24+
- sphinx >=8,<8.2.0
2525
- sphinx-copybutton
2626
- sphinx-favicon
2727
- sphinx-rtd-theme=3

src/tests/test_band_matrix_solver.cc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
#include <limits>
55

66
#include "debug.h"
7-
#include <matpack.h>
87

98
int main() {
109
const Matrix ex = []() {
@@ -32,11 +31,12 @@ int main() {
3231

3332
//! Ensure that the difference is within the machine epsilon
3433
for (auto& x : dense_y) {
35-
ARTS_USER_ERROR_IF(std::abs(x) > 10*std::numeric_limits<Numeric>::epsilon(),
36-
"Error in band matrix solver!\nOutput supposed to be: {}"
37-
"\nBut diff between dense and banded matrix solutions are: {}",
38-
sparse_b,
39-
dense_y)
34+
ARTS_USER_ERROR_IF(
35+
std::abs(x) > 1000 * std::numeric_limits<Numeric>::epsilon(),
36+
"Error in band matrix solver!\nOutput supposed to be: {}"
37+
"\nBut diff between dense and banded matrix solutions are: {}",
38+
sparse_b,
39+
dense_y)
4040
}
4141

4242
return 0;

0 commit comments

Comments
 (0)