Skip to content

Commit

Permalink
Support for python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
gregogiudici committed Feb 13, 2025
1 parent 48e5643 commit 0331e3f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
platform: [windows-latest, macos-latest, ubuntu-latest]
python-version: ["3.8", "3.13"]
python-version: ["3.8", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ build-backend = "scikit_build_core.build"

[project]
name = "python-stretch"
version = "0.3.0"
description = "A Python Wrapper of the Signalsmith Stretch C++ library for pitch and time stretching"
version = "0.3.1"
description = "Simple python library for pitch shifting and time stretching"
readme = "README.md"
requires-python = ">=3.8"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion src/python_stretch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file is required to make Python treat the directories as containing packages
__doc__ = "A simple python library for pitch shifting and time stretching"
__version__ = "0.3.0"
__version__ = "0.3.1"

from . import Signalsmith

0 comments on commit 0331e3f

Please sign in to comment.