Skip to content

Commit

Permalink
skip all test pp*-manylinux_i686. Problem with numpy installation
Browse files Browse the repository at this point in the history
  • Loading branch information
gregogiudici committed Sep 19, 2024
1 parent 0b6c600 commit 4c96926
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# python-stretch: pitch shifting and time stretching
# pystretch: pitch shifting and time stretching
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/gregogiudici/python-stretch/blob/main/LICENSE)
[![Supported Platforms](https://img.shields.io/badge/platforms-macOS%20%7C%20Windows%20%7C%20Linux-green)](https://pypi.org/project/python-stretch)
[![Pip Action Status][actions-pip-badge]][actions-pip-link]
Expand All @@ -24,7 +24,7 @@ A simple Python Wrapper of the Signalsmith Stretch C++ library for pitch and tim

## Installation

`python-stretch` is available via PyPI (via [Platform Wheels](https://packaging.python.org/guides/distributing-packages-using-setuptools/#platform-wheels)):
`pystretch` is available via PyPI (via [Platform Wheels](https://packaging.python.org/guides/distributing-packages-using-setuptools/#platform-wheels)):
```
pip install python-stretch
```
Expand All @@ -41,7 +41,7 @@ pip install ./python-stretch
```
import numpy as np
import librosa
import python-stretch
import pystretch
# Load an audio example from librosa (e.g., 'trumpet', 'brahms',...)
audio, sr = librosa.load(librosa.ex('trumpet'), sr=None)
Expand All @@ -51,7 +51,7 @@ if (audio.shape == 1):
audio = audio[np.newaxis, :]
# Create a Stretch object
ps = python-stretch.Signalsmith.Stretch()
ps = pystretch.Signalsmith.Stretch()
# Configure using a preset
ps.preset(audio.shape(0), sr) # numChannels, sampleRate
# Shift pitch 1 octave up
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["scikit-build-core >=0.10", "nanobind >=2.0.0"]
build-backend = "scikit_build_core.build"

[project]
name = "pystretch"
name = "python-stretch"
version = "0.0.1"
description = "A Python Wrapprer of the Signalsmith Stretch C++ library for pitch and time stretching"
readme = "README.md"
Expand Down Expand Up @@ -40,7 +40,7 @@ test-requires = ["pytest", "numpy"]
# Don't test Python 3.8 wheels on macOS/arm64
# test-skip="cp38-macosx_*:arm64"
# Don't test Python 3.9 wheels on manylinux_i686
test-skip="pp39-manylinux_i686"
test-skip="pp*-manylinux_i686"

# Needed for full C++17 support
[tool.cibuildwheel.macos.environment]
Expand Down

0 comments on commit 4c96926

Please sign in to comment.