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
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ jobs:
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: ${{ matrix.python-version }}
flag-name: conda-${{ runner.os }}-py${{ matrix.python-version }}
parallel: true
path-to-lcov: ./coverage.lcov

Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: ${{ matrix.python-version }}
flag-name: pip-${{ runner.os }}-py${{ matrix.python-version }}
parallel: true
path-to-lcov: ./coverage.lcov

Expand Down Expand Up @@ -355,7 +355,7 @@ jobs:
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: ${{ matrix.python-version }}
flag-name: hindcast-${{ runner.os }}-py${{ matrix.python-version }}
parallel: true
path-to-lcov: ./coverage.lcov

Expand All @@ -370,9 +370,9 @@ jobs:
runs-on: ubuntu-latest
container: python:3-slim
steps:
- name: Finished
run: |
pip3 install --upgrade coveralls
coveralls --finish
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
parallel-finished: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion mhkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Ignore future warnings
_warn.simplefilter(action="ignore", category=FutureWarning)

__version__ = "v0.7.0"
__version__ = "v0.8.0"

__copyright__ = """
Copyright 2019, Alliance for Sustainable Energy, LLC under the terms of
Expand Down