diff --git a/.github/workflows/build-conda.yml b/.github/workflows/build-conda.yml index d242aec..920b9d8 100644 --- a/.github/workflows/build-conda.yml +++ b/.github/workflows/build-conda.yml @@ -51,7 +51,7 @@ jobs: - uses: actions/upload-artifact@v4 with: - name: build_outputs + name: build_outputs-${{ matrix.os }} path: ./build_output/*/pysces*.tar.bz2 - name: Upload to anaconda.org diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index 362d11d..9a47632 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -12,8 +12,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - # os: [ubuntu-latest, windows-latest, macos-12] - os: [ubuntu-latest] + os: [ubuntu-latest, windows-latest, macos-12] steps: - uses: actions/checkout@v4 @@ -66,8 +65,8 @@ jobs: - name: Display structure of downloaded files run: ls -lR dist -# - uses: pypa/gh-action-pypi-publish@release/v1 -# with: -# user: __token__ -# password: ${{ secrets.PYPI_TOKEN }} + - uses: pypa/gh-action-pypi-publish@release/v1 + with: + user: __token__ + password: ${{ secrets.PYPI_TOKEN }} # repository_url: https://test.pypi.org/legacy/ diff --git a/pyproject.toml b/pyproject.toml index 0460b5f..21c8d9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,8 +72,7 @@ download = "https://github.com/PySCeS/pysces/releases" tracker = "https://github.com/PySCeS/pysces/issues" [tool.cibuildwheel] -build = "cp311-*" -#build = "cp312-* cp311-* cp310-* cp39-*" +build = "cp312-* cp311-* cp310-* cp39-*" skip = "*musllinux* pp*" build-verbosity = "3" test-command = "python -s -c \"import pysces; pysces.test(3)\""