Skip to content

Commit cd770bf

Browse files
committed
testing workflow
1 parent 92eb877 commit cd770bf

File tree

3 files changed

+2
-11
lines changed

3 files changed

+2
-11
lines changed

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
-DCMAKE_POSITION_INDEPENDENT_CODE=ON \
8787
-DCMAKE_OSX_DEPLOYMENT_TARGET=11.0 \
8888
-DCMAKE_INSTALL_RPATH="@loader_path/../lib" \
89-
-DCMAKE_BUILD_WITH_INSTALL_RPATH=ON \
89+
-DCMAKE_BUILD_WITH_INSTALL_RPATH=ON
9090
cmake --build build/ --clean-first -j
9191
sudo cmake --install build --prefix /usr/local
9292
- name: Install cibuildwheel

quaddtype/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build-backend = "mesonpy"
1010
[project]
1111
name = "numpy_quaddtype"
1212
description = "Quad (128-bit) float dtype for numpy"
13-
version = "0.0.82"
13+
version = "0.0.84"
1414
readme = 'README.md'
1515
authors = [{name = "Swayam Singh", email = "[email protected]"}]
1616
requires-python = ">=3.10.0"

quaddtype/tests/test_quaddtype.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,6 @@ def test_unary_ops(op, val, expected):
7171
assert result == expected_val, f"{op}({val}) should be {expected}, but got {result}"
7272

7373

74-
def test_nan_and_inf():
75-
# NaN should not equal itself
76-
assert QuadPrecision("nan") != QuadPrecision("nan")
77-
78-
# Test infinity comparisons
79-
assert QuadPrecision("inf") > QuadPrecision("1e1000")
80-
assert QuadPrecision("-inf") < QuadPrecision("-1e1000")
81-
82-
8374
def test_dtype_creation():
8475
dtype = QuadPrecDType()
8576
assert isinstance(dtype, np.dtype)

0 commit comments

Comments
 (0)