Skip to content

Commit

Permalink
ci: lint after post-release reset version update (#1657)
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli authored Dec 15, 2022
1 parent ed12b1c commit fb72098
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,9 @@ jobs:
version="$major_version.$minor_version.$((patch_version + 1))"
python scripts/update_version.py -v "$version"
# lint Python files
python scripts/pull_request_prepare.py
# commit and push reset branch
git config core.sharedRepository true
git config user.name "github-actions[bot]"
Expand Down
2 changes: 1 addition & 1 deletion flopy/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
major = 3
minor = 3
micro = 7
__version__ = '{}.{}.{}'.format(major, minor, micro)
__version__ = "{}.{}.{}".format(major, minor, micro)

0 comments on commit fb72098

Please sign in to comment.