@@ -29,24 +29,19 @@ jobs:
2929 uses : PyO3/maturin-action@v1
3030 with :
3131 target : x86_64
32- args : -i python --release --out dist
32+ args : -i python --release --out dist --no-sdist
3333 - name : Install build wheel - x86_64
3434 run : |
3535 pip install --force-reinstall dist/robyn*.whl
3636 cd ~ && python -c 'import robyn'
3737 - name : Build wheels - universal2
3838 uses : PyO3/maturin-action@v1
3939 with :
40- args : -i python --release --universal2 --out dist
40+ args : -i python --release --universal2 --out dist --no-sdist
4141 - name : Install build wheel - universal2
4242 run : |
4343 pip install --force-reinstall dist/robyn*_universal2.whl
4444 cd ~ && python -c 'import robyn'
45- - name : Upload wheels
46- uses : actions/upload-artifact@v3
47- with :
48- name : wheels
49- path : dist
5045
5146 windows :
5247 runs-on : windows-latest
@@ -65,17 +60,12 @@ jobs:
6560 uses : PyO3/maturin-action@v1
6661 with :
6762 target : ${{ matrix.target }}
68- args : -i python --release --out dist
63+ args : -i python --release --out dist --no-sdist
6964 - name : Install build wheel
7065 shell : bash
7166 run : |
7267 pip install --force-reinstall dist/robyn*.whl
7368 cd ~ && python -c 'import robyn'
74- - name : Upload wheels
75- uses : actions/upload-artifact@v3
76- with :
77- name : wheels
78- path : dist
7969
8070 linux :
8171 runs-on : ubuntu-latest
@@ -94,17 +84,12 @@ jobs:
9484 with :
9585 target : ${{ matrix.target }}
9686 manylinux : auto
97- args : -i python${{ matrix.python-version }} --release --out dist
87+ args : -i python${{ matrix.python-version }} --release --out dist --no-sdist
9888 - name : Install build wheel
9989 if : matrix.target == 'x86_64'
10090 run : |
10191 pip install --force-reinstall dist/robyn*.whl
10292 cd ~ && python -c 'import robyn'
103- - name : Upload wheels
104- uses : actions/upload-artifact@v3
105- with :
106- name : wheels
107- path : dist
10893
10994 linux-cross :
11095 runs-on : ubuntu-latest
@@ -128,7 +113,7 @@ jobs:
128113 with :
129114 target : ${{ matrix.target }}
130115 manylinux : auto
131- args : -i python${{matrix.python.version}} --release --out dist
116+ args : -i python${{matrix.python.version}} --release --out dist --no-sdist
132117133118 name : Install build wheel
134119 with :
@@ -155,8 +140,3 @@ jobs:
155140 pip install --upgrade pip setuptools wheel
156141 pip install --force-reinstall dist/robyn*.whl
157142 cd ~ && python -c 'import robyn'
158- - name : Upload wheels
159- uses : actions/upload-artifact@v3
160- with :
161- name : wheels
162- path : dist
0 commit comments