Skip to content

RLS Version 1.4.14

RLS Version 1.4.14 #6

name: macOS Package
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine numpy
- name: Build
run: |
python setup.py bdist_wheel
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: wheels
path: |
dist/*