Skip to content

Commit

Permalink
Release v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iver56 committed Aug 15, 2024
1 parent 9d0f53a commit eac0438
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Build and test wheels
env:
CIBW_ARCHS: "auto64"
CIBW_SKIP: "cp36-* cp37-* pp37-* pp310-*"
CIBW_SKIP: "cp36-* cp37-* pp37-* pp310-* cp313-*"
CC: clang
run: |
python -m cibuildwheel --output-dir wheelhouse
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
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).

## [0.3.1] - 2024-08-15

### Changes

* Optimize (with AVX) the processing of contiguous int16 arrays. ~2.3x speedup compared to 0.3.0

## [0.3.0] - 2024-07-29

### Added
Expand Down
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,11 @@ min_val, max_val = numpy_minmax.minmax(arr) # 0.0, 1336.0

# Changelog

## [0.3.0] - 2024-07-29

### Added

* Distribute source
## [0.3.1] - 2024-08-15

### Changes

* Add support for ARM (without NEON optimizations for now) on Linux and macOS
* Update supported numpy version range to >=1.21,<2
* Optimize (with AVX) the processing of contiguous int16 arrays. ~2.3x speedup compared to 0.3.0

For the complete changelog, go to [CHANGELOG.md](CHANGELOG.md)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "numpy-minmax"
version = "0.3.0"
version = "0.3.1"
description = "A fast python library for finding both min and max value in a NumPy array"
dependencies = [
"cffi>=1.0.0",
Expand Down

0 comments on commit eac0438

Please sign in to comment.