Skip to content

Commit

Permalink
Update version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gregogiudici committed Sep 21, 2024
1 parent 23f46cf commit 91a6467
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ jobs:
uses: actions/upload-artifact/merge@v4
with:
name: dist
path: dist/*
pattern: dist-*

upload_all:
Expand All @@ -80,7 +79,10 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: wheels
path: dist
path: ./dist

- name: List dist files
run: ls ./dist

- uses: pypa/gh-action-pypi-publish@release/v1
with:
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 = "scikit_build_core.build"

[project]
name = "python-stretch"
version = "0.1.1"
version = "0.2.0"
description = "A Python Wrapprer of the Signalsmith Stretch C++ library for pitch and time stretching"
readme = "README.md"
requires-python = ">=3.9"
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 Python Wrapprer of the Signalsmith Stretch C++ library for pitch and time stretching"
__version__ = "0.1.1"
__version__ = "0.2.0"

from . import Signalsmith

0 comments on commit 91a6467

Please sign in to comment.