diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1eb0acb..d29d232 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,13 +15,13 @@ jobs: runs-on: [windows-latest] strategy: matrix: - python-version: [3.8] + python-version: ['3.8'] steps: - uses: actions/checkout@v2 - run: git submodule update --init --recursive - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -46,13 +46,13 @@ jobs: runs-on: [ubuntu-latest] strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2 - run: git submodule update --init --recursive - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -70,7 +70,7 @@ jobs: runs-on: [macos-latest] strategy: matrix: - python-version: [3.9] + python-version: ['3.9'] env: MACOSX_DEPLOYMENT_TARGET: "10.14" @@ -78,7 +78,7 @@ jobs: - uses: actions/checkout@v2 - run: git submodule update --init --recursive - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c2b12fe..95b8b46 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,13 +10,13 @@ jobs: runs-on: [windows-latest] strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2 - run: git submodule update --init --recursive - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -45,13 +45,13 @@ jobs: - uses: actions/checkout@v2 - run: git submodule update --init --recursive - name: Set up Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: - python-version: 3.9 + python-version: '3.10' - name: Build uses: RalfG/python-wheels-manylinux-build@v0.2-manylinux2014_x86_64 with: - python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38' + python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39' system-packages: 'epel-release cmake3' package-path: '' - name: Upload wheels @@ -74,13 +74,13 @@ jobs: - uses: actions/checkout@v2 - run: git submodule update --init --recursive - name: Set up Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: - python-version: 3.9 + python-version: '3.10' - name: Build uses: RalfG/python-wheels-manylinux-build@v0.2-manylinux2014_x86_64 with: - python-versions: 'cp39-cp39' + python-versions: 'cp310-cp310' system-packages: 'epel-release cmake3' package-path: '' - name: Upload wheels @@ -103,7 +103,7 @@ jobs: runs-on: [macos-latest] strategy: matrix: - python-version: [3.8, 3.9] + python-version: ['3.8', '3.9', '3.10'] env: MACOSX_DEPLOYMENT_TARGET: "10.14" @@ -111,7 +111,7 @@ jobs: - uses: actions/checkout@v2 - run: git submodule update --init --recursive - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies