Browse Source

Make pip wheel for several linux version

Pip wheels does not work across Ubuntu version apparently due to glibc version not being the same.
tags/v0.1.1-test-9-python-runtime
haixuanTao 3 years ago
parent
commit
756c024727
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      .github/workflows/pip-release.yml

+ 2
- 2
.github/workflows/pip-release.yml View File

@@ -14,8 +14,8 @@ jobs:

strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
platform: [ubuntu-latest, ubuntu-20.04, ubuntu-18.04, windows-latest]
python-version: ["3.7"]
fail-fast: false
runs-on: ${{ matrix.platform }}



Loading…
Cancel
Save