Skip to content

Commit

Permalink
use another github action to build wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
VasudhaJha committed Apr 18, 2023
1 parent e08d7df commit 8e6260f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ permissions:
jobs:
publish-linux:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -23,13 +20,13 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: setup.py
- name: Create wheel
run: |
pip install auditwheel manylinux
pip wheel . --wheel-dir dist/
- name: Install dependencies
run: |
pip install setuptools wheel numpy transonic psutil twine build
- name: Create wheels
uses: RalfG/python-wheels-manylinux-build@v0.7.1-manylinux2010_x86_64
with:
build-requirements: 'setuptools wheel numpy transonic psutil'
- name: Publish
env:
TWINE_USERNAME: __token__
Expand All @@ -43,6 +40,7 @@ jobs:
publish-windows:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
Expand All @@ -69,6 +67,7 @@ jobs:
publish-macos:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![codecov](https://codecov.io/github/mapmanager/brightest-path-lib/branch/main/graph/badge.svg?token=0ZR226588I)](https://codecov.io/github/mapmanager/brightest-path-lib)
[![OS](https://img.shields.io/badge/OS-Linux|Windows|macOS-blue.svg)]()
[![License](https://img.shields.io/badge/license-GPLv3-blue)](https://github.com/mapmanager/brightest-path-lib/blob/main/LICENSE)
<!-- [![PyPI](https://img.shields.io/pypi/v/brightest-path-lib.svg)](https://pypi.org/project/brightest-path-lib/) -->
[![PyPI](https://img.shields.io/pypi/v/brightest-path-lib.svg)](https://pypi.org/project/brightest-path-lib/)
<!-- [![Changelog](https://img.shields.io/github/v/release/mapmanager/brightest-path-lib?include_prereleases&label=changelog)](https://github.com/mapmanager/brightest-path-lib/releases) -->

A library of path-finding algorithms to find the brightest path between two points.
Expand Down

0 comments on commit 8e6260f

Please sign in to comment.