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
2
2
from .errors import RenderError
3
3
import logging
4
4
from .utils import NullHandler
Original file line number Diff line number Diff line change 1
- from collections import Iterable
1
+ from collections . abc import Iterable
2
2
from renderapi .errors import RenderError
3
3
from .leaf import AffineModel , Polynomial2DTransform
4
4
from .transform import TransformList , ReferenceTransform
You can’t perform that action at this time.
0 commit comments