Skip to content

Commit bbb627d

Browse files
committed
fixing macos-13 build and bumping quaddtyping version to 0.1.0 from 0.0.1
1 parent aa1b834 commit bbb627d

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/build_wheels.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,11 @@ jobs:
100100
- name: Install dependencies
101101
run: |
102102
packages="cmake libomp git"
103-
if [[ "${{ matrix.os }}" == "macos-14" ]]; then
104-
echo "Remove preinstalled dependencies"
105-
for pkg in $packages; do
106-
brew uninstall --ignore-dependencies $pkg 2>/dev/null || true
107-
done
108-
brew cleanup
109-
fi
103+
echo "Remove preinstalled dependencies"
104+
for pkg in $packages; do
105+
brew uninstall --ignore-dependencies $pkg 2>/dev/null || true
106+
done
107+
brew cleanup
110108
brew install $packages
111109
112110
- name: Install SLEEF

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.1"
13+
version = "0.1.0"
1414
readme = 'README.md'
1515
authors = [{name = "Swayam Singh", email = "[email protected]"}]
1616
requires-python = ">=3.10.0"

0 commit comments

Comments
 (0)