diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index 5b30f1f..3184c90 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -36,7 +36,7 @@ jobs: - os: ubuntu-latest arch: auto64 type: manylinux2014 - build: "cp{311,312,313,314}-*" + build: "cp{310,311,312,313,314}-*" CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 - os: macos-latest @@ -59,8 +59,6 @@ jobs: CIBW_ARCHS: ${{ matrix.arch }} CIBW_TEST_REQUIRES: pytest CIBW_TEST_COMMAND: pytest -vvs {project}/tests - # Skip PyPy wheels - CIBW_SKIP: "pp*" - name: Collect built wheels uses: actions/upload-artifact@v4 diff --git a/.github/workflows/test-and-build.yml b/.github/workflows/test-and-build.yml index cdad975..116cd67 100644 --- a/.github/workflows/test-and-build.yml +++ b/.github/workflows/test-and-build.yml @@ -43,7 +43,7 @@ jobs: - os: ubuntu-latest arch: auto64 type: manylinux2014 - build: "cp{311,312,313,314}-*" + build: "cp{310,311,312,313,314}-*" CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 - os: macos-latest diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 33b229e..007bede 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog ========= +v0.1.2 +------ + +*2025-10-30* -- Also build linux python 3.10 builds which was skipped in v0.1.1 + + v0.1.1 ------ diff --git a/setup.cfg b/setup.cfg index 070ea4c..e21b8f2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = cyseq -version = 0.1.1 +version = 0.1.2 license = Apache-2.0 # description must be on ONE line https://github.com/pypa/setuptools/issues/1390