diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 02cabc68..c906f457 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,9 +18,9 @@ jobs: - name: Build a source tarball run: python setup.py sdist - name: Build wheels - uses: RalfG/python-wheels-manylinux-build@v0.3.4-manylinux1_x86_64 + uses: RalfG/python-wheels-manylinux-build@v0.4.2-manylinux2014_x86_64 with: - python-versions: 'cp27-cp27mu cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39' + python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310' build-requirements: 'cython' - name: Clean linux_x86_64.whl run: rm dist/*-linux_x86_64.whl diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 1b1473e9..606eb0fe 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - pyver: ["2.7", "3.6", "3.7", "3.8", "3.9"] + pyver: ["3.7", "3.8", "3.9", "3.10"] compiler: ["gcc", "clang"] build_type: ["Debug", "Release"] @@ -42,7 +42,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - pyver: ["2.7", "3.6", "3.7", "3.8", "3.9"] + pyver: ["3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2