diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3db71da..2a30bf4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -105,12 +105,17 @@ jobs: - name: Install cibuildwheel run: | - python -m pip install twine cibuildwheel==2.22.0 + python -m pip install cibuildwheel==2.22.0 - name: Build wheel run: | python -m cibuildwheel --output-dir wheelhouse + - uses: actions/upload-artifact@v4 + with: + name: flacarray-cp${{ matrix.python }}-${{ matrix.builder }}_${{ matrix.arch }} + path: ./wheelhouse/flacarray*cp${{ matrix.python }}-${{ matrix.builder }}*${{ matrix.arch }}*.whl + upload_pypi: needs: build_wheels runs-on: ubuntu-latest diff --git a/flacarray/__init__.py b/flacarray/__init__.py index 84c4848..a5ec41a 100644 --- a/flacarray/__init__.py +++ b/flacarray/__init__.py @@ -14,6 +14,6 @@ # Set the log level logging.basicConfig(level=log_level) -__version__ = "0.2.1" +__version__ = "0.2.2" from .array import FlacArray diff --git a/pyproject.toml b/pyproject.toml index 7787bba..2cb1154 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ build-backend = "mesonpy" [project] name = "flacarray" -version = "0.2.1" +version = "0.2.2" description = "FLAC Compression of Arrays" readme = "README.md" maintainers = [