Skip to content

✨ Add support for UInt8 arrays in Grid3D and Grid4D classes #28

✨ Add support for UInt8 arrays in Grid3D and Grid4D classes

✨ Add support for UInt8 arrays in Grid3D and Grid4D classes #28

Workflow file for this run

name: Upload Python Package
on:
push:
tags:
- '*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install packaging setuptools twine
- name: Build and publish
run: |
echo "[pypi]" > ~/.pypirc
echo "username = __token__" >> ~/.pypirc
echo "password = ${{ secrets.PYPI_PASSWORD }}" >> ~/.pypirc
python setup.py sdist
twine upload dist/*