Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ jobs:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/itwinai
url: https://pypi.org/p/dask-flood-mapper
permissions:
id-token: write
contents: write
steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand All @@ -36,5 +37,7 @@ jobs:
run: |
git config --local user.name "$GITHUB_ACTOR"
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com"
git commit $(git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep '_version') -m 'Bump version' || echo "No changes to commit"
git commit "$(git diff --name-only ${{ github.event.before }} \
${{ github.sha }} | grep '_version')" -m 'Bump version' || \
echo "No changes to commit"
git push origin || echo "No changes to commit"
2 changes: 1 addition & 1 deletion .isort.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[settings]
known_third_party =appdirs,dask,dask_flood_mapper,dateutil,flask,flask_cors,hvplot,numba,numpy,odc,pandas,panel,pystac_client,pytest,rioxarray,setuptools,xarray,yaml
known_third_party =appdirs,dask,dask_flood_mapper,dateutil,flask,flask_cors,hvplot,numba,numpy,odc,pandas,panel,pystac,pystac_client,pytest,rioxarray,setuptools,xarray,yaml
appdirs
dask
dask_flood_mapper
Expand Down
Loading