Skip to content

Commit

Permalink
Merge pull request #165 from AllenInstitute/develop
Browse files Browse the repository at this point in the history
Develop -> master
  • Loading branch information
RussTorres authored Jul 19, 2023
2 parents c4a1ba4 + 842eb63 commit 42b926a
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release_publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: release_publish
on:
# workflow_dispatch:
release:
types: [published]
jobs:
pypi_publish:
name: Deploy to pypi
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v2

- name: Build
run: python setup.py sdist bdist_wheel

- name: Publish to Pypi
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
2 changes: 1 addition & 1 deletion renderapi/image_pyramid.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from collections import MutableMapping
from collections.abc import MutableMapping
from .errors import RenderError
import logging
from .utils import NullHandler
Expand Down
2 changes: 1 addition & 1 deletion renderapi/transform/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from collections import Iterable
from collections.abc import Iterable
from renderapi.errors import RenderError
from .leaf import AffineModel, Polynomial2DTransform
from .transform import TransformList, ReferenceTransform
Expand Down

0 comments on commit 42b926a

Please sign in to comment.