Skip to content

Commit 6dfa5db

Browse files
committed
fixing push to pypi
1 parent 9255ac2 commit 6dfa5db

1 file changed

Lines changed: 38 additions & 38 deletions

File tree

.github/workflows/publish.yml

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -10,44 +10,44 @@ permissions:
1010
contents: read
1111

1212
jobs:
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

Comments
 (0)