|
17 | 17 | bash -exc '/opt/python/cp39-cp39/bin/pip install --upgrade pip setuptools && \ |
18 | 18 | yum install -y epel-release && \ |
19 | 19 | yum-config-manager --enable epel && \ |
20 | | - yum install -y openblas-devel gcc && \ |
| 20 | + yum install -y openblas-serial gcc && \ |
21 | 21 | export src=${GITHUB_WORKSPACE:-/src/pyscf-forge} && \ |
22 | 22 | export dst=${GITHUB_WORKSPACE:-/src/pyscf-forge}/linux-wheels && \ |
23 | 23 | mkdir -p /root/wheelhouse $src/linux-wheels && \ |
|
54 | 54 | bash -exc '/opt/python/cp39-cp39/bin/pip install --upgrade pip setuptools && \ |
55 | 55 | yum install -y epel-release && \ |
56 | 56 | yum-config-manager --enable epel && \ |
57 | | - yum install -y openblas-devel gcc && \ |
| 57 | + yum install -y openblas-serial gcc && \ |
58 | 58 | export src=${GITHUB_WORKSPACE:-/src/pyscf-forge} && \ |
59 | 59 | export dst=${GITHUB_WORKSPACE:-/src/pyscf-forge}/linux-wheels && \ |
60 | 60 | mkdir -p /root/wheelhouse $src/linux-wheels && \ |
@@ -86,20 +86,11 @@ jobs: |
86 | 86 | ls ${{ github.workspace }}/dist |
87 | 87 | - name: Publish to PyPI |
88 | 88 | # if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') |
89 | | - uses: pypa/gh-action-pypi-publish@release/v1 |
90 | | - with: |
91 | | - user: __token__ |
92 | | - #password: ${{ secrets.PYPI_TEST_API_TOKEN }} |
93 | | - #repository_url: https://test.pypi.org/legacy/ |
94 | | - password: ${{ secrets.PYPI_API_TOKEN }} |
95 | | - packages-dir: ${{ github.workspace }}/dist |
96 | | - verbose: true |
97 | | - - name: Publish to PyPI |
98 | 89 | run: | |
99 | 90 | pip3 install twine |
100 | 91 | export TWINE_USERNAME=__token__ |
101 | 92 | export TWINE_PASSWORD="${{ secrets.PYPI_API_TOKEN }}" |
102 | | - twine upload --verbose linux-wheels/* |
| 93 | + twine upload --verbose dist/* |
103 | 94 |
|
104 | 95 | # release-pypi-macos-x86: |
105 | 96 | # name: Build wheels for macos |
|
0 commit comments