Skip to content

Commit

Permalink
Introduce action to deploy to pypi
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Mueller <[email protected]>
  • Loading branch information
johannes-mueller committed Jan 9, 2024
1 parent faa6717 commit 00ace4b
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 4 deletions.
80 changes: 80 additions & 0 deletions .github/workflows/pypi-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name: Build and upload to PyPI

on:
release:
type: [published]

env:
CIBW_BUILD: cp37-* cp38-* cp39-* cp310-*
CIBW_BEFORE_BUILD: pip install cython
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
CIBW_MANYLINUX_I686_IMAGE: manylinux2014

jobs:
build_wheels:
name: Build wheels on [ ubuntu-latest ]
runs-on: [ ubuntu-latest ]
strategy:
matrix:
os: [ubuntu-latest] #, windows-latest]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.10'

- name: Install cibuildwheel
run: |
# python -m pip install cibuildwheel
pip install -U setuptools setuptools_scm wheel
- name: Build wheels
run: |
# python -m cibuildwheel --output-dir wheelhouse
python setup.py bdist_wheel
- uses: actions/upload-artifact@v2
with:
path: ./dist/*.whl


build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.10'

- name: Install setuptools
run: |
pip install -U setuptools setuptools_scm wheel
- name: Build sdist
run: python setup.py sdist

- uses: actions/upload-artifact@v2
with:
path: dist/*.tar.gz

upload_pypi:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v2
with:
name: artifact
path: dist

- uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.upload_pypi }}
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
name = torchphysics
description = PyTorch implementation of Deep Learning methods to solve differential equations
author = Nick Heilenkötter, Tom Freudenberg
version = 1.0.1
version = 1.0.2rc1
author_email = [email protected], [email protected]
license = Apache-2.0
long_description = file: README.rst
Expand Down Expand Up @@ -65,11 +65,11 @@ exclude =
[options.extras_require]
# Add here additional requirements for extra features, to install with:
# `pip install torchphysics[all]` like:
all =
all =
trimesh>=3.9.19
shapely>=1.7.1
rtree>=0.9.7
networkx>=2.5.1
networkx>=2.5.1

# Add here test requirements (semicolon/line-separated)
testing =
Expand Down Expand Up @@ -135,4 +135,4 @@ exclude =
# This will be used when updating. Do not change!
version = 4.0.1
package = torchphysics
extensions =
extensions =

0 comments on commit 00ace4b

Please sign in to comment.