-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Johannes Mueller <[email protected]>
- Loading branch information
1 parent
faa6717
commit 00ace4b
Showing
2 changed files
with
84 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 = | ||
|
@@ -135,4 +135,4 @@ exclude = | |
# This will be used when updating. Do not change! | ||
version = 4.0.1 | ||
package = torchphysics | ||
extensions = | ||
extensions = |