Skip to content

highspy python package has a dependancy issue with numpy #302

highspy python package has a dependancy issue with numpy

highspy python package has a dependancy issue with numpy #302

name: Publish Python 🐍 distributions πŸ“¦ to PyPI
on: [push, pull_request, workflow_dispatch]
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions πŸ“¦ to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3
uses: actions/setup-python@v4
with:
python-version: "3.x"
- run: pip install -U wheel build
- name: Build a binary wheel and a source tarball
run: python -m build
- name: Publish distribution πŸ“¦ to Test PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.test_pypi_password }}
repository_url: https://test.pypi.org/legacy/
- name: Publish distribution πŸ“¦ to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.pypi_password }}