Skip to content

Commit 0331e3f

Browse files
committed
Support for python 3.8
1 parent 48e5643 commit 0331e3f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/pip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
platform: [windows-latest, macos-latest, ubuntu-latest]
18-
python-version: ["3.8", "3.13"]
18+
python-version: ["3.8", "3.12"]
1919

2020
steps:
2121
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ build-backend = "scikit_build_core.build"
88

99
[project]
1010
name = "python-stretch"
11-
version = "0.3.0"
12-
description = "A Python Wrapper of the Signalsmith Stretch C++ library for pitch and time stretching"
11+
version = "0.3.1"
12+
description = "Simple python library for pitch shifting and time stretching"
1313
readme = "README.md"
1414
requires-python = ">=3.8"
1515
authors = [

src/python_stretch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is required to make Python treat the directories as containing packages
22
__doc__ = "A simple python library for pitch shifting and time stretching"
3-
__version__ = "0.3.0"
3+
__version__ = "0.3.1"
44

55
from . import Signalsmith

0 commit comments

Comments
 (0)