We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1f8c06 commit 18e6776Copy full SHA for 18e6776
quaddtype/pyproject.toml
@@ -10,7 +10,7 @@ build-backend = "mesonpy"
10
[project]
11
name = "numpy_quaddtype"
12
description = "Quad (128-bit) float dtype for numpy"
13
-version = "0.0.5"
+version = "0.0.6"
14
readme = 'README.md'
15
authors = [{name = "Swayam Singh", email = "[email protected]"}]
16
requires-python = ">=3.10.0"
quaddtype/tests/test_quaddtype.py
@@ -103,6 +103,7 @@ def test_array_operations():
103
print("\n" + "#"*50 + "\n")
104
print(f"result: {result}")
105
print(f"expected: {expected}")
106
+ print(f"NumPy version: {np.__version__}")
107
print(f"np.all result: {np.all(result == expected)}")
108
109
assert np.all(result == expected)
0 commit comments