@@ -10,44 +10,44 @@ permissions:
1010 contents : read
1111
1212jobs :
13- publish-linux :
14- runs-on : ubuntu-latest
15- strategy :
16- fail-fast : false
17- matrix :
18- python-version :
19- # - ["3.8", "cp38"]
20- - ["3.9", "cp39"]
21- - ["3.10", "cp310"]
22- - ["3.11", "cp311"]
23- platform : ["manylinux_x86_64"]
24- steps :
25- - uses : actions/checkout@v3
26- - name : Set up Python ${{ matrix.python-version[0] }}
27- uses : actions/setup-python@v4
28- with :
29- python-version : ${{ matrix.python-version[0] }}
30- cache : pip
31- cache-dependency-path : setup.py
32- - name : Install dependencies
33- run : |
34- pip install setuptools wheel numpy transonic psutil twine build
35- - name : Build wheels
36- uses : pypa/cibuildwheel@v2.12.1
37- env :
38- CIBW_BUILD : ${{ matrix.python-version[1] }}-${{ matrix.platform }}
39- CIBW_BUILD_FRONTEND : " build" # "pip"
40- with :
41- output-dir : " dist"
42- config-file : " pyproject.toml"
43- - name : Publish
44- env :
45- TWINE_USERNAME : __token__
46- TWINE_PASSWORD : ${{ secrets.TWINE_API_KEY }}
47- run : |
48- git tag
49- twine upload dist/*manylinux*.whl --verbose
50- continue-on-error : true
13+ # publish-linux:
14+ # runs-on: ubuntu-latest
15+ # strategy:
16+ # fail-fast: false
17+ # matrix:
18+ # python-version:
19+ # - ["3.8", "cp38"]
20+ # - ["3.9", "cp39"]
21+ # - ["3.10", "cp310"]
22+ # - ["3.11", "cp311"]
23+ # platform: ["manylinux_x86_64"]
24+ # steps:
25+ # - uses: actions/checkout@v3
26+ # - name: Set up Python ${{ matrix.python-version[0] }}
27+ # uses: actions/setup-python@v4
28+ # with:
29+ # python-version: ${{ matrix.python-version[0] }}
30+ # cache: pip
31+ # cache-dependency-path: setup.py
32+ # - name: Install dependencies
33+ # run: |
34+ # pip install setuptools wheel numpy transonic psutil twine build
35+ # - name: Build wheels
36+ # uses: pypa/cibuildwheel@v2.12.1
37+ # env:
38+ # CIBW_BUILD: ${{ matrix.python-version[1] }}-${{ matrix.platform }}
39+ # CIBW_BUILD_FRONTEND: "build" # "pip"
40+ # with:
41+ # output-dir: "dist"
42+ # config-file: "pyproject.toml"
43+ # - name: Publish
44+ # env:
45+ # TWINE_USERNAME: __token__
46+ # TWINE_PASSWORD: ${{ secrets.TWINE_API_KEY }}
47+ # run: |
48+ # git tag
49+ # twine upload dist/*manylinux*.whl --verbose
50+ # continue-on-error: true
5151
5252 publish-windows :
5353 runs-on : windows-latest
0 commit comments