diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a76f68..719b935 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,7 @@ jobs: - run: python tools/overwrite_dev_versions_with_date.py - run: python -m pip install pybind11~=2.11.1 cibuildwheel~=2.16.2 setuptools - run: python -m cibuildwheel --print-build-identifiers - - run: python -m cibuildwheel --output-dir output/chromobius + - run: python -m cibuildwheel --output-dir dist - uses: actions/upload-artifact@v4.4.0 with: name: "dist-chromobius-${{ matrix.os_dist.os }}-${{ matrix.os_dist.dist }}-${{ matrix.os_dist.macosarch }}" @@ -214,10 +214,10 @@ jobs: if: github.ref == 'refs/heads/main' runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v4.1.7 with: - name: dist - path: dist + name: dist-chromobius + path: dist-chromobius - uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ diff --git a/setup.py b/setup.py index e63b840..ec7f2f1 100644 --- a/setup.py +++ b/setup.py @@ -71,7 +71,7 @@ def build_extension(self, ext): ], cwd=build_temp, env=build_env) -__version__ = '1.1.dev0' +__version__ = '1.2.dev0' with open("README.md", "r", encoding="utf-8") as f: long_description = f.read()