diff --git a/.github/workflows/release-wheels.yml b/.github/workflows/release-wheels.yml index ae2f627..16a0120 100644 --- a/.github/workflows/release-wheels.yml +++ b/.github/workflows/release-wheels.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/setup-python@v5 name: Install Python with: - python-version: '3.10' + python-version: '3.13' - name: Build sdist run: | @@ -161,12 +161,12 @@ jobs: - uses: actions/setup-python@v5 name: Install Python with: - python-version: '3.9' + python-version: '3.13' - name: Install cibuildwheel run: | python -m pip install -U pip - python -m pip install cibuildwheel>=2.21 + python -m pip install cibuildwheel>=3.1.3 - name: Build wheels (non-MacOS arm64) env: @@ -222,10 +222,10 @@ jobs: - uses: actions/setup-python@v5 name: Install Python with: - python-version: '3.9' + python-version: '3.13' - name: Install cibuildwheel - run: python -m pip install cibuildwheel>=2.21 wheel>=0.42 + run: python -m pip install cibuildwheel>=3.1.3 - name: Build wheels env: diff --git a/build.py b/build_package.py similarity index 100% rename from build.py rename to build_package.py diff --git a/pyproject.toml b/pyproject.toml index fb2a899..95bb2c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ requires = [ build-backend = "poetry.core.masonry.api" [tool.poetry.build] -script = "build.py" +script = "build_package.py" generate-setup-file = true [tool.poetry]