diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 520413b..5022ee3 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -53,6 +53,10 @@ jobs: steps: - name: actions/checkout uses: actions/checkout@v3 + - name: actions/setup-python@v4 + uses: actions/setup-python@v4 + with: + python-version: '3.11' - name: actions/cache pip uses: actions/cache@v2 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 331d914..6169af5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,7 +34,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest, windows-latest ] - cibw_python: [ "cp38-*", "cp39-*", "cp310-*", "cp311-*" ] + cibw_python: [ "cp39-*", "cp310-*", "cp311-*" ] cibw_arch: [ "auto64" ] defaults: @@ -77,4 +77,4 @@ jobs: uses: pypa/gh-action-pypi-publish@master with: user: __token__ - password: ${{ secrets.PYPI_API_TOKEN }} \ No newline at end of file + password: ${{ secrets.PYPI_API_TOKEN }}