File tree Expand file tree Collapse file tree 3 files changed +23
-2
lines changed
Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 1+ name : release_publish
2+ on :
3+ # workflow_dispatch:
4+ release :
5+ types : [published]
6+ jobs :
7+ pypi_publish :
8+ name : Deploy to pypi
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : Check out repo
12+ uses : actions/checkout@v2
13+
14+ - name : Build
15+ run : python setup.py sdist bdist_wheel
16+
17+ - name : Publish to Pypi
18+ uses : pypa/gh-action-pypi-publish@release/v1
19+ with :
20+ user : __token__
21+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change 1- from collections import MutableMapping
1+ from collections . abc import MutableMapping
22from .errors import RenderError
33import logging
44from .utils import NullHandler
Original file line number Diff line number Diff line change 1- from collections import Iterable
1+ from collections . abc import Iterable
22from renderapi .errors import RenderError
33from .leaf import AffineModel , Polynomial2DTransform
44from .transform import TransformList , ReferenceTransform
You can’t perform that action at this time.
0 commit comments