diff --git a/.github/manylinux.py b/.github/manylinux.py index 6a289b91..bf04743d 100644 --- a/.github/manylinux.py +++ b/.github/manylinux.py @@ -53,7 +53,7 @@ def compile_wheels(idx): ''' for pybin in glob('/opt/python/*/bin'): # Requires Py3.6 or greater - on the docker image 3.5 is cp35-cp35m - if "35" not in pybin and "310" not in pybin: + if "35" not in pybin: check_call(['rm', '-rf', '_skbuild']) args = [path.join(pybin, 'pip'), 'wheel', '--verbose', '--no-deps', '-w', 'wheelhouse/'] if idx is not None: diff --git a/.github/workflows/pipwinmac-wip.yml b/.github/workflows/pipwinmac-wip.yml index 21d31ddb..4a1967c0 100644 --- a/.github/workflows/pipwinmac-wip.yml +++ b/.github/workflows/pipwinmac-wip.yml @@ -17,7 +17,7 @@ jobs: os: - macos-10.15 - windows-2016 - python-version: [ '3.6', '3.7', '3.8', '3.9' ] + python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' ] steps: - name: Checkout repo