Skip to content

added use of axis aspect ratio argument when plotting poincare sections #4764

added use of axis aspect ratio argument when plotting poincare sections

added use of axis aspect ratio argument when plotting poincare sections #4764

Workflow file for this run

name: Wheel Builder
on: [push, pull_request]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-11, ubuntu-20.04]
steps:
- uses: actions/checkout@v3
- name: Fetch all history for all tags
run: git fetch --prune --unshallow
- name: Build wheels
uses: pypa/[email protected]
# To supply options, put them in 'env'
env:
# Only build for python 3.{8,9,10,11}
CIBW_BUILD : cp38-* cp39-* cp310-* cp311-*
# Supports only x86_64 arch for linux
CIBW_ARCHS_LINUX: x86_64
CIBW_ARCHS_MACOS: "x86_64 arm64"
CIBW_SKIP: cp27-* cp36-* cp37-*
CIBW_DEPENDENCY_VERSIONS: latest
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Fetch all history for all tags
run: git fetch --prune --unshallow
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.8'
- name: Download all submodules
run: git submodule update --init
- name: Install setuptools_scm
run: python -m pip install setuptools_scm build
- name: Build sdist
run: python -m build -s -o dist .
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
upload_pypi:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
# upload to PyPI on every tag starting with 'v'
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
# alternatively, to publish when a GitHub Release is created, use the following rule:
# if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
#password: ${{ secrets.TEST_PYPI_TOKEN }}
#repository_url: https://test.pypi.org/legacy/