Skip to content

Commit

Permalink
Explain which OSes we currently build for
Browse files Browse the repository at this point in the history
  • Loading branch information
iver56 committed Jan 12, 2024
1 parent c881994 commit 38313ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
os: [ubuntu-latest, windows-latest]
python-version: [3.9]

#if: startsWith(github.event.head_commit.message, 'Release')
if: startsWith(github.event.head_commit.message, 'Release')
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Numpy lacked an optimized minmax function, so we wrote our own.
* Written in C and takes advantage of AVX2 for speed
* Roughly 2.3x faster than the numpy amin+amax equivalent (tested with numpy 1.24-1.26)
* The fast implementation is tailored for C-contiguous 1-dimensional and 2-dimensional float32 arrays. Other types of arrays get processed with numpy.amin and numpy.amax, so no perf gain there.
* Builds for Windows and Linux are available on PyPI

# Installation

Expand Down

0 comments on commit 38313ea

Please sign in to comment.