diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index e6ec5fa..dbd01db 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -25,7 +25,7 @@ jobs: - uses: actions/checkout@v4 - name: Build wheels - uses: pypa/cibuildwheel@v2.19.2 + uses: pypa/cibuildwheel@v2.20.0 - uses: actions/upload-artifact@v4 with: @@ -68,7 +68,7 @@ jobs: name: artifact path: dist - - uses: pypa/gh-action-pypi-publish@v1.9.0 + - uses: pypa/gh-action-pypi-publish@v1.10.0 with: user: __token__ password: ${{ secrets.PYPI_TOKEN }} diff --git a/pyproject.toml b/pyproject.toml index e10bc83..f2400c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ filterwarnings = [ [tool.cibuildwheel] archs = ["auto64"] # 64-bit only -skip = "pp* *musllinux* cp37-* cp38-*" # disable PyPy and musl-based wheels and Python<3.9 +skip = "pp* *musllinux* cp38-* cp313-*" # disable PyPy and musl-based wheels and Python<3.9 test-requires = "pytest" test-command = "pytest {project}/tests"