PyPI #230
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PyPI | |
on: | |
workflow_dispatch: | |
inputs: | |
target: | |
type: choice | |
description: 'Package Index' | |
required: true | |
default: 'PYPI' | |
options: [ 'TESTPYPI', 'PYPI' ] | |
version: | |
type: string | |
description: 'Version tag' | |
required: true | |
default: '3.1' | |
jobs: | |
build_wheels: | |
name: Wheels for ${{ matrix.python }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest , windows-latest, macos-latest ] | |
python: [ "cp39", "cp310", "cp311", "cp312" ] | |
arch: [ auto64 ] | |
steps: | |
- name: Checkout zipline | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
ref: ${{ github.event.inputs.version }} | |
- name: Set Xcode version | |
uses: maxim-lobanov/setup-xcode@v1 | |
if: ${{ matrix.os == 'macos-latest' }} | |
with: | |
xcode-version: latest-stable | |
- name: Wheels macOS / Linux | |
if: runner.os != 'Windows' | |
uses: pypa/cibuildwheel@v2.21.1 | |
env: | |
CIBW_BEFORE_ALL_LINUX: ./tools/install_talib.sh | |
CIBW_BEFORE_ALL_MACOS: brew install ta-lib | |
CIBW_ARCHS_LINUX: ${{ matrix.arch }} | |
CIBW_ARCHS_MACOS: x86_64 arm64 | |
CIBW_BUILD: "${{ matrix.python }}-*" | |
CIBW_SKIP: "*-musllinux_*" | |
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=10.15 | |
- name: Install MSVC amd64 | |
uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: amd64 | |
- name: Wheels Windows | |
if: runner.os == 'Windows' | |
uses: pypa/cibuildwheel@v2.21.1 | |
env: | |
CIBW_BUILD: "${{ matrix.python }}-win_amd64" | |
CIBW_BEFORE_TEST_WINDOWS: > | |
call "c:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64 && | |
call ./tools/install_talib.bat | |
- name: Store artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
overwrite: true | |
name: my-artifact-${{ matrix.runs-on }} | |
path: ./wheelhouse/*.whl | |
build_sdist: | |
name: Build source distribution | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
ref: ${{ github.event.inputs.version }} | |
- uses: actions/setup-python@v5 | |
name: Install Python | |
with: | |
python-version: '3.11' | |
- name: Build sdist | |
run: | | |
pip install -U pip setuptools build | |
python -m build --sdist | |
- uses: actions/upload-artifact@v4 | |
with: | |
overwrite: true | |
path: dist/*.tar.gz | |
upload_pypi: | |
needs: [ build_wheels, build_sdist ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download All Artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: ./wheelhouse | |
pattern: my-artifact-* | |
merge-multiple: true | |
- run: ls -R my-artifact | |
- name: Publish to PyPI | |
if: ${{ github.event.inputs.target == 'PYPI' }} | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} | |
- name: Publish to PyPI - Test | |
if: ${{ github.event.inputs.target == 'TESTPYPI' }} | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.TESTPYPI_TOKEN }} | |
repository-url: https://test.pypi.org/legacy/ | |
skip-existing: true | |
verbose: true |