From 20554aa4ff51c504cb196231cec44013ddd5ab9e Mon Sep 17 00:00:00 2001 From: collijk Date: Tue, 25 Jun 2024 08:19:23 -0700 Subject: [PATCH] Remove support for float128 --- CHANGELOG.md | 2 ++ src/rasterra/_typing.py | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5df395..e9a642a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Fixed +- Removed support for float128, which doesn't work on apple silicon. ## [0.5.13] - 2024-06-24 ### Added diff --git a/src/rasterra/_typing.py b/src/rasterra/_typing.py index aebb17b..1ba7b3d 100644 --- a/src/rasterra/_typing.py +++ b/src/rasterra/_typing.py @@ -24,7 +24,6 @@ | np.float16 | np.float32 | np.float64 - | np.float128 ) SupportedDtypes: typing.TypeAlias = int | bool | float | DataDtypes RasterData: typing.TypeAlias = npt.NDArray[DataDtypes]