Skip to content

Commit b725e15

Browse files
committed
updating sleef installation to only support 3.8 version
1 parent cd770bf commit b725e15

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build Wheels
33
on:
44
push:
55
branches:
6-
- testing-pkg
6+
- main
77
tags:
88
- "quaddtype-v*"
99
paths:

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
sudo apt-get install -y libmpfr-dev libssl-dev libfftw3-dev
6262
- name: Install SLEEF
6363
run: |
64-
git clone https://github.com/shibatch/sleef.git
64+
git clone --branch 3.8 https://github.com/shibatch/sleef.git
6565
cd sleef
6666
cmake -S . -B build -DSLEEF_BUILD_QUAD:BOOL=ON -DSLEEF_BUILD_SHARED_LIBS:BOOL=ON -DCMAKE_POSITION_INDEPENDENT_CODE=ON
6767
cmake --build build/ --clean-first -j

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

0 commit comments

Comments
 (0)